├── .gitignore ├── README.md ├── index.js ├── initRedis.js ├── node_modules ├── .bin │ ├── ejs │ ├── jake │ ├── mime │ └── ulid ├── .package-lock.json ├── @redis │ ├── bloom │ │ ├── README.md │ │ ├── dist │ │ │ ├── commands │ │ │ │ ├── bloom │ │ │ │ │ ├── ADD.d.ts │ │ │ │ │ ├── ADD.js │ │ │ │ │ ├── CARD.d.ts │ │ │ │ │ ├── CARD.js │ │ │ │ │ ├── EXISTS.d.ts │ │ │ │ │ ├── EXISTS.js │ │ │ │ │ ├── INFO.d.ts │ │ │ │ │ ├── INFO.js │ │ │ │ │ ├── INSERT.d.ts │ │ │ │ │ ├── INSERT.js │ │ │ │ │ ├── LOADCHUNK.d.ts │ │ │ │ │ ├── LOADCHUNK.js │ │ │ │ │ ├── MADD.d.ts │ │ │ │ │ ├── MADD.js │ │ │ │ │ ├── MEXISTS.d.ts │ │ │ │ │ ├── MEXISTS.js │ │ │ │ │ ├── RESERVE.d.ts │ │ │ │ │ ├── RESERVE.js │ │ │ │ │ ├── SCANDUMP.d.ts │ │ │ │ │ ├── SCANDUMP.js │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ ├── count-min-sketch │ │ │ │ │ ├── INCRBY.d.ts │ │ │ │ │ ├── INCRBY.js │ │ │ │ │ ├── INFO.d.ts │ │ │ │ │ ├── INFO.js │ │ │ │ │ ├── INITBYDIM.d.ts │ │ │ │ │ ├── INITBYDIM.js │ │ │ │ │ ├── INITBYPROB.d.ts │ │ │ │ │ ├── INITBYPROB.js │ │ │ │ │ ├── MERGE.d.ts │ │ │ │ │ ├── MERGE.js │ │ │ │ │ ├── QUERY.d.ts │ │ │ │ │ ├── QUERY.js │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ ├── cuckoo │ │ │ │ │ ├── ADD.d.ts │ │ │ │ │ ├── ADD.js │ │ │ │ │ ├── ADDNX.d.ts │ │ │ │ │ ├── ADDNX.js │ │ │ │ │ ├── COUNT.d.ts │ │ │ │ │ ├── COUNT.js │ │ │ │ │ ├── DEL.d.ts │ │ │ │ │ ├── DEL.js │ │ │ │ │ ├── EXISTS.d.ts │ │ │ │ │ ├── EXISTS.js │ │ │ │ │ ├── INFO.d.ts │ │ │ │ │ ├── INFO.js │ │ │ │ │ ├── INSERT.d.ts │ │ │ │ │ ├── INSERT.js │ │ │ │ │ ├── INSERTNX.d.ts │ │ │ │ │ ├── INSERTNX.js │ │ │ │ │ ├── LOADCHUNK.d.ts │ │ │ │ │ ├── LOADCHUNK.js │ │ │ │ │ ├── RESERVE.d.ts │ │ │ │ │ ├── RESERVE.js │ │ │ │ │ ├── SCANDUMP.d.ts │ │ │ │ │ ├── SCANDUMP.js │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── t-digest │ │ │ │ │ ├── ADD.d.ts │ │ │ │ │ ├── ADD.js │ │ │ │ │ ├── BYRANK.d.ts │ │ │ │ │ ├── BYRANK.js │ │ │ │ │ ├── BYREVRANK.d.ts │ │ │ │ │ ├── BYREVRANK.js │ │ │ │ │ ├── CDF.d.ts │ │ │ │ │ ├── CDF.js │ │ │ │ │ ├── CREATE.d.ts │ │ │ │ │ ├── CREATE.js │ │ │ │ │ ├── INFO.d.ts │ │ │ │ │ ├── INFO.js │ │ │ │ │ ├── MAX.d.ts │ │ │ │ │ ├── MAX.js │ │ │ │ │ ├── MERGE.d.ts │ │ │ │ │ ├── MERGE.js │ │ │ │ │ ├── MIN.d.ts │ │ │ │ │ ├── MIN.js │ │ │ │ │ ├── QUANTILE.d.ts │ │ │ │ │ ├── QUANTILE.js │ │ │ │ │ ├── RANK.d.ts │ │ │ │ │ ├── RANK.js │ │ │ │ │ ├── RESET.d.ts │ │ │ │ │ ├── RESET.js │ │ │ │ │ ├── REVRANK.d.ts │ │ │ │ │ ├── REVRANK.js │ │ │ │ │ ├── TRIMMED_MEAN.d.ts │ │ │ │ │ ├── TRIMMED_MEAN.js │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── top-k │ │ │ │ │ ├── ADD.d.ts │ │ │ │ │ ├── ADD.js │ │ │ │ │ ├── COUNT.d.ts │ │ │ │ │ ├── COUNT.js │ │ │ │ │ ├── INCRBY.d.ts │ │ │ │ │ ├── INCRBY.js │ │ │ │ │ ├── INFO.d.ts │ │ │ │ │ ├── INFO.js │ │ │ │ │ ├── LIST.d.ts │ │ │ │ │ ├── LIST.js │ │ │ │ │ ├── LIST_WITHCOUNT.d.ts │ │ │ │ │ ├── LIST_WITHCOUNT.js │ │ │ │ │ ├── QUERY.d.ts │ │ │ │ │ ├── QUERY.js │ │ │ │ │ ├── RESERVE.d.ts │ │ │ │ │ ├── RESERVE.js │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ └── package.json │ ├── client │ │ ├── README.md │ │ ├── dist │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── lib │ │ │ │ ├── client │ │ │ │ ├── RESP2 │ │ │ │ │ ├── composers │ │ │ │ │ │ ├── buffer.d.ts │ │ │ │ │ │ ├── buffer.js │ │ │ │ │ │ ├── interface.d.ts │ │ │ │ │ │ ├── interface.js │ │ │ │ │ │ ├── string.d.ts │ │ │ │ │ │ └── string.js │ │ │ │ │ ├── decoder.d.ts │ │ │ │ │ ├── decoder.js │ │ │ │ │ ├── encoder.d.ts │ │ │ │ │ └── encoder.js │ │ │ │ ├── commands-queue.d.ts │ │ │ │ ├── commands-queue.js │ │ │ │ ├── commands.d.ts │ │ │ │ ├── commands.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── multi-command.d.ts │ │ │ │ ├── multi-command.js │ │ │ │ ├── pub-sub.d.ts │ │ │ │ ├── pub-sub.js │ │ │ │ ├── socket.d.ts │ │ │ │ └── socket.js │ │ │ │ ├── cluster │ │ │ │ ├── cluster-slots.d.ts │ │ │ │ ├── cluster-slots.js │ │ │ │ ├── commands.d.ts │ │ │ │ ├── commands.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── multi-command.d.ts │ │ │ │ └── multi-command.js │ │ │ │ ├── command-options.d.ts │ │ │ │ ├── command-options.js │ │ │ │ ├── commander.d.ts │ │ │ │ ├── commander.js │ │ │ │ ├── commands │ │ │ │ ├── ACL_CAT.d.ts │ │ │ │ ├── ACL_CAT.js │ │ │ │ ├── ACL_DELUSER.d.ts │ │ │ │ ├── ACL_DELUSER.js │ │ │ │ ├── ACL_DRYRUN.d.ts │ │ │ │ ├── ACL_DRYRUN.js │ │ │ │ ├── ACL_GENPASS.d.ts │ │ │ │ ├── ACL_GENPASS.js │ │ │ │ ├── ACL_GETUSER.d.ts │ │ │ │ ├── ACL_GETUSER.js │ │ │ │ ├── ACL_LIST.d.ts │ │ │ │ ├── ACL_LIST.js │ │ │ │ ├── ACL_LOAD.d.ts │ │ │ │ ├── ACL_LOAD.js │ │ │ │ ├── ACL_LOG.d.ts │ │ │ │ ├── ACL_LOG.js │ │ │ │ ├── ACL_LOG_RESET.d.ts │ │ │ │ ├── ACL_LOG_RESET.js │ │ │ │ ├── ACL_SAVE.d.ts │ │ │ │ ├── ACL_SAVE.js │ │ │ │ ├── ACL_SETUSER.d.ts │ │ │ │ ├── ACL_SETUSER.js │ │ │ │ ├── ACL_USERS.d.ts │ │ │ │ ├── ACL_USERS.js │ │ │ │ ├── ACL_WHOAMI.d.ts │ │ │ │ ├── ACL_WHOAMI.js │ │ │ │ ├── APPEND.d.ts │ │ │ │ ├── APPEND.js │ │ │ │ ├── ASKING.d.ts │ │ │ │ ├── ASKING.js │ │ │ │ ├── AUTH.d.ts │ │ │ │ ├── AUTH.js │ │ │ │ ├── BGREWRITEAOF.d.ts │ │ │ │ ├── BGREWRITEAOF.js │ │ │ │ ├── BGSAVE.d.ts │ │ │ │ ├── BGSAVE.js │ │ │ │ ├── BITCOUNT.d.ts │ │ │ │ ├── BITCOUNT.js │ │ │ │ ├── BITFIELD.d.ts │ │ │ │ ├── BITFIELD.js │ │ │ │ ├── BITFIELD_RO.d.ts │ │ │ │ ├── BITFIELD_RO.js │ │ │ │ ├── BITOP.d.ts │ │ │ │ ├── BITOP.js │ │ │ │ ├── BITPOS.d.ts │ │ │ │ ├── BITPOS.js │ │ │ │ ├── BLMOVE.d.ts │ │ │ │ ├── BLMOVE.js │ │ │ │ ├── BLMPOP.d.ts │ │ │ │ ├── BLMPOP.js │ │ │ │ ├── BLPOP.d.ts │ │ │ │ ├── BLPOP.js │ │ │ │ ├── BRPOP.d.ts │ │ │ │ ├── BRPOP.js │ │ │ │ ├── BRPOPLPUSH.d.ts │ │ │ │ ├── BRPOPLPUSH.js │ │ │ │ ├── BZMPOP.d.ts │ │ │ │ ├── BZMPOP.js │ │ │ │ ├── BZPOPMAX.d.ts │ │ │ │ ├── BZPOPMAX.js │ │ │ │ ├── BZPOPMIN.d.ts │ │ │ │ ├── BZPOPMIN.js │ │ │ │ ├── CLIENT_CACHING.d.ts │ │ │ │ ├── CLIENT_CACHING.js │ │ │ │ ├── CLIENT_GETNAME.d.ts │ │ │ │ ├── CLIENT_GETNAME.js │ │ │ │ ├── CLIENT_GETREDIR.d.ts │ │ │ │ ├── CLIENT_GETREDIR.js │ │ │ │ ├── CLIENT_ID.d.ts │ │ │ │ ├── CLIENT_ID.js │ │ │ │ ├── CLIENT_INFO.d.ts │ │ │ │ ├── CLIENT_INFO.js │ │ │ │ ├── CLIENT_KILL.d.ts │ │ │ │ ├── CLIENT_KILL.js │ │ │ │ ├── CLIENT_LIST.d.ts │ │ │ │ ├── CLIENT_LIST.js │ │ │ │ ├── CLIENT_NO-EVICT.d.ts │ │ │ │ ├── CLIENT_NO-EVICT.js │ │ │ │ ├── CLIENT_PAUSE.d.ts │ │ │ │ ├── CLIENT_PAUSE.js │ │ │ │ ├── CLIENT_SETNAME.d.ts │ │ │ │ ├── CLIENT_SETNAME.js │ │ │ │ ├── CLIENT_TRACKING.d.ts │ │ │ │ ├── CLIENT_TRACKING.js │ │ │ │ ├── CLIENT_TRACKINGINFO.d.ts │ │ │ │ ├── CLIENT_TRACKINGINFO.js │ │ │ │ ├── CLIENT_UNPAUSE.d.ts │ │ │ │ ├── CLIENT_UNPAUSE.js │ │ │ │ ├── CLUSTER_ADDSLOTS.d.ts │ │ │ │ ├── CLUSTER_ADDSLOTS.js │ │ │ │ ├── CLUSTER_ADDSLOTSRANGE.d.ts │ │ │ │ ├── CLUSTER_ADDSLOTSRANGE.js │ │ │ │ ├── CLUSTER_BUMPEPOCH.d.ts │ │ │ │ ├── CLUSTER_BUMPEPOCH.js │ │ │ │ ├── CLUSTER_COUNT-FAILURE-REPORTS.d.ts │ │ │ │ ├── CLUSTER_COUNT-FAILURE-REPORTS.js │ │ │ │ ├── CLUSTER_COUNTKEYSINSLOT.d.ts │ │ │ │ ├── CLUSTER_COUNTKEYSINSLOT.js │ │ │ │ ├── CLUSTER_DELSLOTS.d.ts │ │ │ │ ├── CLUSTER_DELSLOTS.js │ │ │ │ ├── CLUSTER_DELSLOTSRANGE.d.ts │ │ │ │ ├── CLUSTER_DELSLOTSRANGE.js │ │ │ │ ├── CLUSTER_FAILOVER.d.ts │ │ │ │ ├── CLUSTER_FAILOVER.js │ │ │ │ ├── CLUSTER_FLUSHSLOTS.d.ts │ │ │ │ ├── CLUSTER_FLUSHSLOTS.js │ │ │ │ ├── CLUSTER_FORGET.d.ts │ │ │ │ ├── CLUSTER_FORGET.js │ │ │ │ ├── CLUSTER_GETKEYSINSLOT.d.ts │ │ │ │ ├── CLUSTER_GETKEYSINSLOT.js │ │ │ │ ├── CLUSTER_INFO.d.ts │ │ │ │ ├── CLUSTER_INFO.js │ │ │ │ ├── CLUSTER_KEYSLOT.d.ts │ │ │ │ ├── CLUSTER_KEYSLOT.js │ │ │ │ ├── CLUSTER_LINKS.d.ts │ │ │ │ ├── CLUSTER_LINKS.js │ │ │ │ ├── CLUSTER_MEET.d.ts │ │ │ │ ├── CLUSTER_MEET.js │ │ │ │ ├── CLUSTER_MYID.d.ts │ │ │ │ ├── CLUSTER_MYID.js │ │ │ │ ├── CLUSTER_NODES.d.ts │ │ │ │ ├── CLUSTER_NODES.js │ │ │ │ ├── CLUSTER_REPLICAS.d.ts │ │ │ │ ├── CLUSTER_REPLICAS.js │ │ │ │ ├── CLUSTER_REPLICATE.d.ts │ │ │ │ ├── CLUSTER_REPLICATE.js │ │ │ │ ├── CLUSTER_RESET.d.ts │ │ │ │ ├── CLUSTER_RESET.js │ │ │ │ ├── CLUSTER_SAVECONFIG.d.ts │ │ │ │ ├── CLUSTER_SAVECONFIG.js │ │ │ │ ├── CLUSTER_SET-CONFIG-EPOCH.d.ts │ │ │ │ ├── CLUSTER_SET-CONFIG-EPOCH.js │ │ │ │ ├── CLUSTER_SETSLOT.d.ts │ │ │ │ ├── CLUSTER_SETSLOT.js │ │ │ │ ├── CLUSTER_SLOTS.d.ts │ │ │ │ ├── CLUSTER_SLOTS.js │ │ │ │ ├── COMMAND.d.ts │ │ │ │ ├── COMMAND.js │ │ │ │ ├── COMMAND_COUNT.d.ts │ │ │ │ ├── COMMAND_COUNT.js │ │ │ │ ├── COMMAND_GETKEYS.d.ts │ │ │ │ ├── COMMAND_GETKEYS.js │ │ │ │ ├── COMMAND_GETKEYSANDFLAGS.d.ts │ │ │ │ ├── COMMAND_GETKEYSANDFLAGS.js │ │ │ │ ├── COMMAND_INFO.d.ts │ │ │ │ ├── COMMAND_INFO.js │ │ │ │ ├── COMMAND_LIST.d.ts │ │ │ │ ├── COMMAND_LIST.js │ │ │ │ ├── CONFIG_GET.d.ts │ │ │ │ ├── CONFIG_GET.js │ │ │ │ ├── CONFIG_RESETSTAT.d.ts │ │ │ │ ├── CONFIG_RESETSTAT.js │ │ │ │ ├── CONFIG_REWRITE.d.ts │ │ │ │ ├── CONFIG_REWRITE.js │ │ │ │ ├── CONFIG_SET.d.ts │ │ │ │ ├── CONFIG_SET.js │ │ │ │ ├── COPY.d.ts │ │ │ │ ├── COPY.js │ │ │ │ ├── DBSIZE.d.ts │ │ │ │ ├── DBSIZE.js │ │ │ │ ├── DECR.d.ts │ │ │ │ ├── DECR.js │ │ │ │ ├── DECRBY.d.ts │ │ │ │ ├── DECRBY.js │ │ │ │ ├── DEL.d.ts │ │ │ │ ├── DEL.js │ │ │ │ ├── DISCARD.d.ts │ │ │ │ ├── DISCARD.js │ │ │ │ ├── DUMP.d.ts │ │ │ │ ├── DUMP.js │ │ │ │ ├── ECHO.d.ts │ │ │ │ ├── ECHO.js │ │ │ │ ├── EVAL.d.ts │ │ │ │ ├── EVAL.js │ │ │ │ ├── EVALSHA.d.ts │ │ │ │ ├── EVALSHA.js │ │ │ │ ├── EVALSHA_RO.d.ts │ │ │ │ ├── EVALSHA_RO.js │ │ │ │ ├── EVAL_RO.d.ts │ │ │ │ ├── EVAL_RO.js │ │ │ │ ├── EXISTS.d.ts │ │ │ │ ├── EXISTS.js │ │ │ │ ├── EXPIRE.d.ts │ │ │ │ ├── EXPIRE.js │ │ │ │ ├── EXPIREAT.d.ts │ │ │ │ ├── EXPIREAT.js │ │ │ │ ├── EXPIRETIME.d.ts │ │ │ │ ├── EXPIRETIME.js │ │ │ │ ├── FAILOVER.d.ts │ │ │ │ ├── FAILOVER.js │ │ │ │ ├── FCALL.d.ts │ │ │ │ ├── FCALL.js │ │ │ │ ├── FCALL_RO.d.ts │ │ │ │ ├── FCALL_RO.js │ │ │ │ ├── FLUSHALL.d.ts │ │ │ │ ├── FLUSHALL.js │ │ │ │ ├── FLUSHDB.d.ts │ │ │ │ ├── FLUSHDB.js │ │ │ │ ├── FUNCTION_DELETE.d.ts │ │ │ │ ├── FUNCTION_DELETE.js │ │ │ │ ├── FUNCTION_DUMP.d.ts │ │ │ │ ├── FUNCTION_DUMP.js │ │ │ │ ├── FUNCTION_FLUSH.d.ts │ │ │ │ ├── FUNCTION_FLUSH.js │ │ │ │ ├── FUNCTION_KILL.d.ts │ │ │ │ ├── FUNCTION_KILL.js │ │ │ │ ├── FUNCTION_LIST.d.ts │ │ │ │ ├── FUNCTION_LIST.js │ │ │ │ ├── FUNCTION_LIST_WITHCODE.d.ts │ │ │ │ ├── FUNCTION_LIST_WITHCODE.js │ │ │ │ ├── FUNCTION_LOAD.d.ts │ │ │ │ ├── FUNCTION_LOAD.js │ │ │ │ ├── FUNCTION_RESTORE.d.ts │ │ │ │ ├── FUNCTION_RESTORE.js │ │ │ │ ├── FUNCTION_STATS.d.ts │ │ │ │ ├── FUNCTION_STATS.js │ │ │ │ ├── GEOADD.d.ts │ │ │ │ ├── GEOADD.js │ │ │ │ ├── GEODIST.d.ts │ │ │ │ ├── GEODIST.js │ │ │ │ ├── GEOHASH.d.ts │ │ │ │ ├── GEOHASH.js │ │ │ │ ├── GEOPOS.d.ts │ │ │ │ ├── GEOPOS.js │ │ │ │ ├── GEORADIUS.d.ts │ │ │ │ ├── GEORADIUS.js │ │ │ │ ├── GEORADIUSBYMEMBER.d.ts │ │ │ │ ├── GEORADIUSBYMEMBER.js │ │ │ │ ├── GEORADIUSBYMEMBERSTORE.d.ts │ │ │ │ ├── GEORADIUSBYMEMBERSTORE.js │ │ │ │ ├── GEORADIUSBYMEMBER_RO.d.ts │ │ │ │ ├── GEORADIUSBYMEMBER_RO.js │ │ │ │ ├── GEORADIUSBYMEMBER_RO_WITH.d.ts │ │ │ │ ├── GEORADIUSBYMEMBER_RO_WITH.js │ │ │ │ ├── GEORADIUSBYMEMBER_WITH.d.ts │ │ │ │ ├── GEORADIUSBYMEMBER_WITH.js │ │ │ │ ├── GEORADIUSSTORE.d.ts │ │ │ │ ├── GEORADIUSSTORE.js │ │ │ │ ├── GEORADIUS_RO.d.ts │ │ │ │ ├── GEORADIUS_RO.js │ │ │ │ ├── GEORADIUS_RO_WITH.d.ts │ │ │ │ ├── GEORADIUS_RO_WITH.js │ │ │ │ ├── GEORADIUS_WITH.d.ts │ │ │ │ ├── GEORADIUS_WITH.js │ │ │ │ ├── GEOSEARCH.d.ts │ │ │ │ ├── GEOSEARCH.js │ │ │ │ ├── GEOSEARCHSTORE.d.ts │ │ │ │ ├── GEOSEARCHSTORE.js │ │ │ │ ├── GEOSEARCH_WITH.d.ts │ │ │ │ ├── GEOSEARCH_WITH.js │ │ │ │ ├── GET.d.ts │ │ │ │ ├── GET.js │ │ │ │ ├── GETBIT.d.ts │ │ │ │ ├── GETBIT.js │ │ │ │ ├── GETDEL.d.ts │ │ │ │ ├── GETDEL.js │ │ │ │ ├── GETEX.d.ts │ │ │ │ ├── GETEX.js │ │ │ │ ├── GETRANGE.d.ts │ │ │ │ ├── GETRANGE.js │ │ │ │ ├── GETSET.d.ts │ │ │ │ ├── GETSET.js │ │ │ │ ├── HDEL.d.ts │ │ │ │ ├── HDEL.js │ │ │ │ ├── HELLO.d.ts │ │ │ │ ├── HELLO.js │ │ │ │ ├── HEXISTS.d.ts │ │ │ │ ├── HEXISTS.js │ │ │ │ ├── HGET.d.ts │ │ │ │ ├── HGET.js │ │ │ │ ├── HGETALL.d.ts │ │ │ │ ├── HGETALL.js │ │ │ │ ├── HINCRBY.d.ts │ │ │ │ ├── HINCRBY.js │ │ │ │ ├── HINCRBYFLOAT.d.ts │ │ │ │ ├── HINCRBYFLOAT.js │ │ │ │ ├── HKEYS.d.ts │ │ │ │ ├── HKEYS.js │ │ │ │ ├── HLEN.d.ts │ │ │ │ ├── HLEN.js │ │ │ │ ├── HMGET.d.ts │ │ │ │ ├── HMGET.js │ │ │ │ ├── HRANDFIELD.d.ts │ │ │ │ ├── HRANDFIELD.js │ │ │ │ ├── HRANDFIELD_COUNT.d.ts │ │ │ │ ├── HRANDFIELD_COUNT.js │ │ │ │ ├── HRANDFIELD_COUNT_WITHVALUES.d.ts │ │ │ │ ├── HRANDFIELD_COUNT_WITHVALUES.js │ │ │ │ ├── HSCAN.d.ts │ │ │ │ ├── HSCAN.js │ │ │ │ ├── HSET.d.ts │ │ │ │ ├── HSET.js │ │ │ │ ├── HSETNX.d.ts │ │ │ │ ├── HSETNX.js │ │ │ │ ├── HSTRLEN.d.ts │ │ │ │ ├── HSTRLEN.js │ │ │ │ ├── HVALS.d.ts │ │ │ │ ├── HVALS.js │ │ │ │ ├── INCR.d.ts │ │ │ │ ├── INCR.js │ │ │ │ ├── INCRBY.d.ts │ │ │ │ ├── INCRBY.js │ │ │ │ ├── INCRBYFLOAT.d.ts │ │ │ │ ├── INCRBYFLOAT.js │ │ │ │ ├── INFO.d.ts │ │ │ │ ├── INFO.js │ │ │ │ ├── KEYS.d.ts │ │ │ │ ├── KEYS.js │ │ │ │ ├── LASTSAVE.d.ts │ │ │ │ ├── LASTSAVE.js │ │ │ │ ├── LATENCY_DOCTOR.d.ts │ │ │ │ ├── LATENCY_DOCTOR.js │ │ │ │ ├── LATENCY_GRAPH.d.ts │ │ │ │ ├── LATENCY_GRAPH.js │ │ │ │ ├── LATENCY_LATEST.d.ts │ │ │ │ ├── LATENCY_LATEST.js │ │ │ │ ├── LCS.d.ts │ │ │ │ ├── LCS.js │ │ │ │ ├── LCS_IDX.d.ts │ │ │ │ ├── LCS_IDX.js │ │ │ │ ├── LCS_IDX_WITHMATCHLEN.d.ts │ │ │ │ ├── LCS_IDX_WITHMATCHLEN.js │ │ │ │ ├── LCS_LEN.d.ts │ │ │ │ ├── LCS_LEN.js │ │ │ │ ├── LINDEX.d.ts │ │ │ │ ├── LINDEX.js │ │ │ │ ├── LINSERT.d.ts │ │ │ │ ├── LINSERT.js │ │ │ │ ├── LLEN.d.ts │ │ │ │ ├── LLEN.js │ │ │ │ ├── LMOVE.d.ts │ │ │ │ ├── LMOVE.js │ │ │ │ ├── LMPOP.d.ts │ │ │ │ ├── LMPOP.js │ │ │ │ ├── LOLWUT.d.ts │ │ │ │ ├── LOLWUT.js │ │ │ │ ├── LPOP.d.ts │ │ │ │ ├── LPOP.js │ │ │ │ ├── LPOP_COUNT.d.ts │ │ │ │ ├── LPOP_COUNT.js │ │ │ │ ├── LPOS.d.ts │ │ │ │ ├── LPOS.js │ │ │ │ ├── LPOS_COUNT.d.ts │ │ │ │ ├── LPOS_COUNT.js │ │ │ │ ├── LPUSH.d.ts │ │ │ │ ├── LPUSH.js │ │ │ │ ├── LPUSHX.d.ts │ │ │ │ ├── LPUSHX.js │ │ │ │ ├── LRANGE.d.ts │ │ │ │ ├── LRANGE.js │ │ │ │ ├── LREM.d.ts │ │ │ │ ├── LREM.js │ │ │ │ ├── LSET.d.ts │ │ │ │ ├── LSET.js │ │ │ │ ├── LTRIM.d.ts │ │ │ │ ├── LTRIM.js │ │ │ │ ├── MEMORY_DOCTOR.d.ts │ │ │ │ ├── MEMORY_DOCTOR.js │ │ │ │ ├── MEMORY_MALLOC-STATS.d.ts │ │ │ │ ├── MEMORY_MALLOC-STATS.js │ │ │ │ ├── MEMORY_PURGE.d.ts │ │ │ │ ├── MEMORY_PURGE.js │ │ │ │ ├── MEMORY_STATS.d.ts │ │ │ │ ├── MEMORY_STATS.js │ │ │ │ ├── MEMORY_USAGE.d.ts │ │ │ │ ├── MEMORY_USAGE.js │ │ │ │ ├── MGET.d.ts │ │ │ │ ├── MGET.js │ │ │ │ ├── MIGRATE.d.ts │ │ │ │ ├── MIGRATE.js │ │ │ │ ├── MODULE_LIST.d.ts │ │ │ │ ├── MODULE_LIST.js │ │ │ │ ├── MODULE_LOAD.d.ts │ │ │ │ ├── MODULE_LOAD.js │ │ │ │ ├── MODULE_UNLOAD.d.ts │ │ │ │ ├── MODULE_UNLOAD.js │ │ │ │ ├── MOVE.d.ts │ │ │ │ ├── MOVE.js │ │ │ │ ├── MSET.d.ts │ │ │ │ ├── MSET.js │ │ │ │ ├── MSETNX.d.ts │ │ │ │ ├── MSETNX.js │ │ │ │ ├── OBJECT_ENCODING.d.ts │ │ │ │ ├── OBJECT_ENCODING.js │ │ │ │ ├── OBJECT_FREQ.d.ts │ │ │ │ ├── OBJECT_FREQ.js │ │ │ │ ├── OBJECT_IDLETIME.d.ts │ │ │ │ ├── OBJECT_IDLETIME.js │ │ │ │ ├── OBJECT_REFCOUNT.d.ts │ │ │ │ ├── OBJECT_REFCOUNT.js │ │ │ │ ├── PERSIST.d.ts │ │ │ │ ├── PERSIST.js │ │ │ │ ├── PEXPIRE.d.ts │ │ │ │ ├── PEXPIRE.js │ │ │ │ ├── PEXPIREAT.d.ts │ │ │ │ ├── PEXPIREAT.js │ │ │ │ ├── PEXPIRETIME.d.ts │ │ │ │ ├── PEXPIRETIME.js │ │ │ │ ├── PFADD.d.ts │ │ │ │ ├── PFADD.js │ │ │ │ ├── PFCOUNT.d.ts │ │ │ │ ├── PFCOUNT.js │ │ │ │ ├── PFMERGE.d.ts │ │ │ │ ├── PFMERGE.js │ │ │ │ ├── PING.d.ts │ │ │ │ ├── PING.js │ │ │ │ ├── PSETEX.d.ts │ │ │ │ ├── PSETEX.js │ │ │ │ ├── PTTL.d.ts │ │ │ │ ├── PTTL.js │ │ │ │ ├── PUBLISH.d.ts │ │ │ │ ├── PUBLISH.js │ │ │ │ ├── PUBSUB_CHANNELS.d.ts │ │ │ │ ├── PUBSUB_CHANNELS.js │ │ │ │ ├── PUBSUB_NUMPAT.d.ts │ │ │ │ ├── PUBSUB_NUMPAT.js │ │ │ │ ├── PUBSUB_NUMSUB.d.ts │ │ │ │ ├── PUBSUB_NUMSUB.js │ │ │ │ ├── PUBSUB_SHARDCHANNELS.d.ts │ │ │ │ ├── PUBSUB_SHARDCHANNELS.js │ │ │ │ ├── RANDOMKEY.d.ts │ │ │ │ ├── RANDOMKEY.js │ │ │ │ ├── READONLY.d.ts │ │ │ │ ├── READONLY.js │ │ │ │ ├── READWRITE.d.ts │ │ │ │ ├── READWRITE.js │ │ │ │ ├── RENAME.d.ts │ │ │ │ ├── RENAME.js │ │ │ │ ├── RENAMENX.d.ts │ │ │ │ ├── RENAMENX.js │ │ │ │ ├── REPLICAOF.d.ts │ │ │ │ ├── REPLICAOF.js │ │ │ │ ├── RESTORE-ASKING.d.ts │ │ │ │ ├── RESTORE-ASKING.js │ │ │ │ ├── ROLE.d.ts │ │ │ │ ├── ROLE.js │ │ │ │ ├── RPOP.d.ts │ │ │ │ ├── RPOP.js │ │ │ │ ├── RPOPLPUSH.d.ts │ │ │ │ ├── RPOPLPUSH.js │ │ │ │ ├── RPOP_COUNT.d.ts │ │ │ │ ├── RPOP_COUNT.js │ │ │ │ ├── RPUSH.d.ts │ │ │ │ ├── RPUSH.js │ │ │ │ ├── RPUSHX.d.ts │ │ │ │ ├── RPUSHX.js │ │ │ │ ├── SADD.d.ts │ │ │ │ ├── SADD.js │ │ │ │ ├── SAVE.d.ts │ │ │ │ ├── SAVE.js │ │ │ │ ├── SCAN.d.ts │ │ │ │ ├── SCAN.js │ │ │ │ ├── SCARD.d.ts │ │ │ │ ├── SCARD.js │ │ │ │ ├── SCRIPT_DEBUG.d.ts │ │ │ │ ├── SCRIPT_DEBUG.js │ │ │ │ ├── SCRIPT_EXISTS.d.ts │ │ │ │ ├── SCRIPT_EXISTS.js │ │ │ │ ├── SCRIPT_FLUSH.d.ts │ │ │ │ ├── SCRIPT_FLUSH.js │ │ │ │ ├── SCRIPT_KILL.d.ts │ │ │ │ ├── SCRIPT_KILL.js │ │ │ │ ├── SCRIPT_LOAD.d.ts │ │ │ │ ├── SCRIPT_LOAD.js │ │ │ │ ├── SDIFF.d.ts │ │ │ │ ├── SDIFF.js │ │ │ │ ├── SDIFFSTORE.d.ts │ │ │ │ ├── SDIFFSTORE.js │ │ │ │ ├── SET.d.ts │ │ │ │ ├── SET.js │ │ │ │ ├── SETBIT.d.ts │ │ │ │ ├── SETBIT.js │ │ │ │ ├── SETEX.d.ts │ │ │ │ ├── SETEX.js │ │ │ │ ├── SETNX.d.ts │ │ │ │ ├── SETNX.js │ │ │ │ ├── SETRANGE.d.ts │ │ │ │ ├── SETRANGE.js │ │ │ │ ├── SHUTDOWN.d.ts │ │ │ │ ├── SHUTDOWN.js │ │ │ │ ├── SINTER.d.ts │ │ │ │ ├── SINTER.js │ │ │ │ ├── SINTERCARD.d.ts │ │ │ │ ├── SINTERCARD.js │ │ │ │ ├── SINTERSTORE.d.ts │ │ │ │ ├── SINTERSTORE.js │ │ │ │ ├── SISMEMBER.d.ts │ │ │ │ ├── SISMEMBER.js │ │ │ │ ├── SMEMBERS.d.ts │ │ │ │ ├── SMEMBERS.js │ │ │ │ ├── SMISMEMBER.d.ts │ │ │ │ ├── SMISMEMBER.js │ │ │ │ ├── SMOVE.d.ts │ │ │ │ ├── SMOVE.js │ │ │ │ ├── SORT.d.ts │ │ │ │ ├── SORT.js │ │ │ │ ├── SORT_RO.d.ts │ │ │ │ ├── SORT_RO.js │ │ │ │ ├── SORT_STORE.d.ts │ │ │ │ ├── SORT_STORE.js │ │ │ │ ├── SPOP.d.ts │ │ │ │ ├── SPOP.js │ │ │ │ ├── SPUBLISH.d.ts │ │ │ │ ├── SPUBLISH.js │ │ │ │ ├── SRANDMEMBER.d.ts │ │ │ │ ├── SRANDMEMBER.js │ │ │ │ ├── SRANDMEMBER_COUNT.d.ts │ │ │ │ ├── SRANDMEMBER_COUNT.js │ │ │ │ ├── SREM.d.ts │ │ │ │ ├── SREM.js │ │ │ │ ├── SSCAN.d.ts │ │ │ │ ├── SSCAN.js │ │ │ │ ├── STRLEN.d.ts │ │ │ │ ├── STRLEN.js │ │ │ │ ├── SUNION.d.ts │ │ │ │ ├── SUNION.js │ │ │ │ ├── SUNIONSTORE.d.ts │ │ │ │ ├── SUNIONSTORE.js │ │ │ │ ├── SWAPDB.d.ts │ │ │ │ ├── SWAPDB.js │ │ │ │ ├── TIME.d.ts │ │ │ │ ├── TIME.js │ │ │ │ ├── TOUCH.d.ts │ │ │ │ ├── TOUCH.js │ │ │ │ ├── TTL.d.ts │ │ │ │ ├── TTL.js │ │ │ │ ├── TYPE.d.ts │ │ │ │ ├── TYPE.js │ │ │ │ ├── UNLINK.d.ts │ │ │ │ ├── UNLINK.js │ │ │ │ ├── UNWATCH.d.ts │ │ │ │ ├── UNWATCH.js │ │ │ │ ├── WAIT.d.ts │ │ │ │ ├── WAIT.js │ │ │ │ ├── WATCH.d.ts │ │ │ │ ├── WATCH.js │ │ │ │ ├── XACK.d.ts │ │ │ │ ├── XACK.js │ │ │ │ ├── XADD.d.ts │ │ │ │ ├── XADD.js │ │ │ │ ├── XAUTOCLAIM.d.ts │ │ │ │ ├── XAUTOCLAIM.js │ │ │ │ ├── XAUTOCLAIM_JUSTID.d.ts │ │ │ │ ├── XAUTOCLAIM_JUSTID.js │ │ │ │ ├── XCLAIM.d.ts │ │ │ │ ├── XCLAIM.js │ │ │ │ ├── XCLAIM_JUSTID.d.ts │ │ │ │ ├── XCLAIM_JUSTID.js │ │ │ │ ├── XDEL.d.ts │ │ │ │ ├── XDEL.js │ │ │ │ ├── XGROUP_CREATE.d.ts │ │ │ │ ├── XGROUP_CREATE.js │ │ │ │ ├── XGROUP_CREATECONSUMER.d.ts │ │ │ │ ├── XGROUP_CREATECONSUMER.js │ │ │ │ ├── XGROUP_DELCONSUMER.d.ts │ │ │ │ ├── XGROUP_DELCONSUMER.js │ │ │ │ ├── XGROUP_DESTROY.d.ts │ │ │ │ ├── XGROUP_DESTROY.js │ │ │ │ ├── XGROUP_SETID.d.ts │ │ │ │ ├── XGROUP_SETID.js │ │ │ │ ├── XINFO_CONSUMERS.d.ts │ │ │ │ ├── XINFO_CONSUMERS.js │ │ │ │ ├── XINFO_GROUPS.d.ts │ │ │ │ ├── XINFO_GROUPS.js │ │ │ │ ├── XINFO_STREAM.d.ts │ │ │ │ ├── XINFO_STREAM.js │ │ │ │ ├── XLEN.d.ts │ │ │ │ ├── XLEN.js │ │ │ │ ├── XPENDING.d.ts │ │ │ │ ├── XPENDING.js │ │ │ │ ├── XPENDING_RANGE.d.ts │ │ │ │ ├── XPENDING_RANGE.js │ │ │ │ ├── XRANGE.d.ts │ │ │ │ ├── XRANGE.js │ │ │ │ ├── XREAD.d.ts │ │ │ │ ├── XREAD.js │ │ │ │ ├── XREADGROUP.d.ts │ │ │ │ ├── XREADGROUP.js │ │ │ │ ├── XREVRANGE.d.ts │ │ │ │ ├── XREVRANGE.js │ │ │ │ ├── XSETID.d.ts │ │ │ │ ├── XSETID.js │ │ │ │ ├── XTRIM.d.ts │ │ │ │ ├── XTRIM.js │ │ │ │ ├── ZADD.d.ts │ │ │ │ ├── ZADD.js │ │ │ │ ├── ZCARD.d.ts │ │ │ │ ├── ZCARD.js │ │ │ │ ├── ZCOUNT.d.ts │ │ │ │ ├── ZCOUNT.js │ │ │ │ ├── ZDIFF.d.ts │ │ │ │ ├── ZDIFF.js │ │ │ │ ├── ZDIFFSTORE.d.ts │ │ │ │ ├── ZDIFFSTORE.js │ │ │ │ ├── ZDIFF_WITHSCORES.d.ts │ │ │ │ ├── ZDIFF_WITHSCORES.js │ │ │ │ ├── ZINCRBY.d.ts │ │ │ │ ├── ZINCRBY.js │ │ │ │ ├── ZINTER.d.ts │ │ │ │ ├── ZINTER.js │ │ │ │ ├── ZINTERCARD.d.ts │ │ │ │ ├── ZINTERCARD.js │ │ │ │ ├── ZINTERSTORE.d.ts │ │ │ │ ├── ZINTERSTORE.js │ │ │ │ ├── ZINTER_WITHSCORES.d.ts │ │ │ │ ├── ZINTER_WITHSCORES.js │ │ │ │ ├── ZLEXCOUNT.d.ts │ │ │ │ ├── ZLEXCOUNT.js │ │ │ │ ├── ZMPOP.d.ts │ │ │ │ ├── ZMPOP.js │ │ │ │ ├── ZMSCORE.d.ts │ │ │ │ ├── ZMSCORE.js │ │ │ │ ├── ZPOPMAX.d.ts │ │ │ │ ├── ZPOPMAX.js │ │ │ │ ├── ZPOPMAX_COUNT.d.ts │ │ │ │ ├── ZPOPMAX_COUNT.js │ │ │ │ ├── ZPOPMIN.d.ts │ │ │ │ ├── ZPOPMIN.js │ │ │ │ ├── ZPOPMIN_COUNT.d.ts │ │ │ │ ├── ZPOPMIN_COUNT.js │ │ │ │ ├── ZRANDMEMBER.d.ts │ │ │ │ ├── ZRANDMEMBER.js │ │ │ │ ├── ZRANDMEMBER_COUNT.d.ts │ │ │ │ ├── ZRANDMEMBER_COUNT.js │ │ │ │ ├── ZRANDMEMBER_COUNT_WITHSCORES.d.ts │ │ │ │ ├── ZRANDMEMBER_COUNT_WITHSCORES.js │ │ │ │ ├── ZRANGE.d.ts │ │ │ │ ├── ZRANGE.js │ │ │ │ ├── ZRANGEBYLEX.d.ts │ │ │ │ ├── ZRANGEBYLEX.js │ │ │ │ ├── ZRANGEBYSCORE.d.ts │ │ │ │ ├── ZRANGEBYSCORE.js │ │ │ │ ├── ZRANGEBYSCORE_WITHSCORES.d.ts │ │ │ │ ├── ZRANGEBYSCORE_WITHSCORES.js │ │ │ │ ├── ZRANGESTORE.d.ts │ │ │ │ ├── ZRANGESTORE.js │ │ │ │ ├── ZRANGE_WITHSCORES.d.ts │ │ │ │ ├── ZRANGE_WITHSCORES.js │ │ │ │ ├── ZRANK.d.ts │ │ │ │ ├── ZRANK.js │ │ │ │ ├── ZREM.d.ts │ │ │ │ ├── ZREM.js │ │ │ │ ├── ZREMRANGEBYLEX.d.ts │ │ │ │ ├── ZREMRANGEBYLEX.js │ │ │ │ ├── ZREMRANGEBYRANK.d.ts │ │ │ │ ├── ZREMRANGEBYRANK.js │ │ │ │ ├── ZREMRANGEBYSCORE.d.ts │ │ │ │ ├── ZREMRANGEBYSCORE.js │ │ │ │ ├── ZREVRANK.d.ts │ │ │ │ ├── ZREVRANK.js │ │ │ │ ├── ZSCAN.d.ts │ │ │ │ ├── ZSCAN.js │ │ │ │ ├── ZSCORE.d.ts │ │ │ │ ├── ZSCORE.js │ │ │ │ ├── ZUNION.d.ts │ │ │ │ ├── ZUNION.js │ │ │ │ ├── ZUNIONSTORE.d.ts │ │ │ │ ├── ZUNIONSTORE.js │ │ │ │ ├── ZUNION_WITHSCORES.d.ts │ │ │ │ ├── ZUNION_WITHSCORES.js │ │ │ │ ├── generic-transformers.d.ts │ │ │ │ ├── generic-transformers.js │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ │ ├── errors.d.ts │ │ │ │ ├── errors.js │ │ │ │ ├── lua-script.d.ts │ │ │ │ ├── lua-script.js │ │ │ │ ├── multi-command.d.ts │ │ │ │ ├── multi-command.js │ │ │ │ ├── utils.d.ts │ │ │ │ └── utils.js │ │ └── package.json │ ├── graph │ │ ├── README.md │ │ ├── dist │ │ │ ├── commands │ │ │ │ ├── CONFIG_GET.d.ts │ │ │ │ ├── CONFIG_GET.js │ │ │ │ ├── CONFIG_SET.d.ts │ │ │ │ ├── CONFIG_SET.js │ │ │ │ ├── DELETE.d.ts │ │ │ │ ├── DELETE.js │ │ │ │ ├── EXPLAIN.d.ts │ │ │ │ ├── EXPLAIN.js │ │ │ │ ├── LIST.d.ts │ │ │ │ ├── LIST.js │ │ │ │ ├── PROFILE.d.ts │ │ │ │ ├── PROFILE.js │ │ │ │ ├── QUERY.d.ts │ │ │ │ ├── QUERY.js │ │ │ │ ├── QUERY_RO.d.ts │ │ │ │ ├── QUERY_RO.js │ │ │ │ ├── RO_QUERY.d.ts │ │ │ │ ├── RO_QUERY.js │ │ │ │ ├── SLOWLOG.d.ts │ │ │ │ ├── SLOWLOG.js │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ ├── graph.d.ts │ │ │ ├── graph.js │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ └── package.json │ ├── json │ │ ├── README.md │ │ ├── dist │ │ │ ├── commands │ │ │ │ ├── ARRAPPEND.d.ts │ │ │ │ ├── ARRAPPEND.js │ │ │ │ ├── ARRINDEX.d.ts │ │ │ │ ├── ARRINDEX.js │ │ │ │ ├── ARRINSERT.d.ts │ │ │ │ ├── ARRINSERT.js │ │ │ │ ├── ARRLEN.d.ts │ │ │ │ ├── ARRLEN.js │ │ │ │ ├── ARRPOP.d.ts │ │ │ │ ├── ARRPOP.js │ │ │ │ ├── ARRTRIM.d.ts │ │ │ │ ├── ARRTRIM.js │ │ │ │ ├── DEBUG_MEMORY.d.ts │ │ │ │ ├── DEBUG_MEMORY.js │ │ │ │ ├── DEL.d.ts │ │ │ │ ├── DEL.js │ │ │ │ ├── FORGET.d.ts │ │ │ │ ├── FORGET.js │ │ │ │ ├── GET.d.ts │ │ │ │ ├── GET.js │ │ │ │ ├── MGET.d.ts │ │ │ │ ├── MGET.js │ │ │ │ ├── NUMINCRBY.d.ts │ │ │ │ ├── NUMINCRBY.js │ │ │ │ ├── NUMMULTBY.d.ts │ │ │ │ ├── NUMMULTBY.js │ │ │ │ ├── OBJKEYS.d.ts │ │ │ │ ├── OBJKEYS.js │ │ │ │ ├── OBJLEN.d.ts │ │ │ │ ├── OBJLEN.js │ │ │ │ ├── RESP.d.ts │ │ │ │ ├── RESP.js │ │ │ │ ├── SET.d.ts │ │ │ │ ├── SET.js │ │ │ │ ├── STRAPPEND.d.ts │ │ │ │ ├── STRAPPEND.js │ │ │ │ ├── STRLEN.d.ts │ │ │ │ ├── STRLEN.js │ │ │ │ ├── TYPE.d.ts │ │ │ │ ├── TYPE.js │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ └── package.json │ ├── search │ │ ├── README.md │ │ ├── dist │ │ │ ├── commands │ │ │ │ ├── AGGREGATE.d.ts │ │ │ │ ├── AGGREGATE.js │ │ │ │ ├── AGGREGATE_WITHCURSOR.d.ts │ │ │ │ ├── AGGREGATE_WITHCURSOR.js │ │ │ │ ├── ALIASADD.d.ts │ │ │ │ ├── ALIASADD.js │ │ │ │ ├── ALIASDEL.d.ts │ │ │ │ ├── ALIASDEL.js │ │ │ │ ├── ALIASUPDATE.d.ts │ │ │ │ ├── ALIASUPDATE.js │ │ │ │ ├── ALTER.d.ts │ │ │ │ ├── ALTER.js │ │ │ │ ├── CONFIG_GET.d.ts │ │ │ │ ├── CONFIG_GET.js │ │ │ │ ├── CONFIG_SET.d.ts │ │ │ │ ├── CONFIG_SET.js │ │ │ │ ├── CREATE.d.ts │ │ │ │ ├── CREATE.js │ │ │ │ ├── CURSOR_DEL.d.ts │ │ │ │ ├── CURSOR_DEL.js │ │ │ │ ├── CURSOR_READ.d.ts │ │ │ │ ├── CURSOR_READ.js │ │ │ │ ├── DICTADD.d.ts │ │ │ │ ├── DICTADD.js │ │ │ │ ├── DICTDEL.d.ts │ │ │ │ ├── DICTDEL.js │ │ │ │ ├── DICTDUMP.d.ts │ │ │ │ ├── DICTDUMP.js │ │ │ │ ├── DROPINDEX.d.ts │ │ │ │ ├── DROPINDEX.js │ │ │ │ ├── EXPLAIN.d.ts │ │ │ │ ├── EXPLAIN.js │ │ │ │ ├── EXPLAINCLI.d.ts │ │ │ │ ├── EXPLAINCLI.js │ │ │ │ ├── INFO.d.ts │ │ │ │ ├── INFO.js │ │ │ │ ├── PROFILE_AGGREGATE.d.ts │ │ │ │ ├── PROFILE_AGGREGATE.js │ │ │ │ ├── PROFILE_SEARCH.d.ts │ │ │ │ ├── PROFILE_SEARCH.js │ │ │ │ ├── SEARCH.d.ts │ │ │ │ ├── SEARCH.js │ │ │ │ ├── SPELLCHECK.d.ts │ │ │ │ ├── SPELLCHECK.js │ │ │ │ ├── SUGADD.d.ts │ │ │ │ ├── SUGADD.js │ │ │ │ ├── SUGDEL.d.ts │ │ │ │ ├── SUGDEL.js │ │ │ │ ├── SUGGET.d.ts │ │ │ │ ├── SUGGET.js │ │ │ │ ├── SUGGET_WITHPAYLOADS.d.ts │ │ │ │ ├── SUGGET_WITHPAYLOADS.js │ │ │ │ ├── SUGGET_WITHSCORES.d.ts │ │ │ │ ├── SUGGET_WITHSCORES.js │ │ │ │ ├── SUGGET_WITHSCORES_WITHPAYLOADS.d.ts │ │ │ │ ├── SUGGET_WITHSCORES_WITHPAYLOADS.js │ │ │ │ ├── SUGLEN.d.ts │ │ │ │ ├── SUGLEN.js │ │ │ │ ├── SYNDUMP.d.ts │ │ │ │ ├── SYNDUMP.js │ │ │ │ ├── SYNUPDATE.d.ts │ │ │ │ ├── SYNUPDATE.js │ │ │ │ ├── TAGVALS.d.ts │ │ │ │ ├── TAGVALS.js │ │ │ │ ├── _LIST.d.ts │ │ │ │ ├── _LIST.js │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ └── package.json │ └── time-series │ │ ├── README.md │ │ ├── dist │ │ ├── commands │ │ │ ├── ADD.d.ts │ │ │ ├── ADD.js │ │ │ ├── ALTER.d.ts │ │ │ ├── ALTER.js │ │ │ ├── CREATE.d.ts │ │ │ ├── CREATE.js │ │ │ ├── CREATERULE.d.ts │ │ │ ├── CREATERULE.js │ │ │ ├── DECRBY.d.ts │ │ │ ├── DECRBY.js │ │ │ ├── DEL.d.ts │ │ │ ├── DEL.js │ │ │ ├── DELETERULE.d.ts │ │ │ ├── DELETERULE.js │ │ │ ├── GET.d.ts │ │ │ ├── GET.js │ │ │ ├── INCRBY.d.ts │ │ │ ├── INCRBY.js │ │ │ ├── INFO.d.ts │ │ │ ├── INFO.js │ │ │ ├── INFO_DEBUG.d.ts │ │ │ ├── INFO_DEBUG.js │ │ │ ├── MADD.d.ts │ │ │ ├── MADD.js │ │ │ ├── MGET.d.ts │ │ │ ├── MGET.js │ │ │ ├── MGET_WITHLABELS.d.ts │ │ │ ├── MGET_WITHLABELS.js │ │ │ ├── MRANGE.d.ts │ │ │ ├── MRANGE.js │ │ │ ├── MRANGE_WITHLABELS.d.ts │ │ │ ├── MRANGE_WITHLABELS.js │ │ │ ├── MREVRANGE.d.ts │ │ │ ├── MREVRANGE.js │ │ │ ├── MREVRANGE_WITHLABELS.d.ts │ │ │ ├── MREVRANGE_WITHLABELS.js │ │ │ ├── QUERYINDEX.d.ts │ │ │ ├── QUERYINDEX.js │ │ │ ├── RANGE.d.ts │ │ │ ├── RANGE.js │ │ │ ├── REVRANGE.d.ts │ │ │ ├── REVRANGE.js │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ ├── index.d.ts │ │ └── index.js │ │ └── package.json ├── @socket.io │ └── component-emitter │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.mjs │ │ └── package.json ├── @types │ ├── cookie │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ └── package.json │ ├── cors │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ └── package.json │ └── node │ │ ├── LICENSE │ │ ├── README.md │ │ ├── assert.d.ts │ │ ├── assert │ │ └── strict.d.ts │ │ ├── async_hooks.d.ts │ │ ├── buffer.d.ts │ │ ├── child_process.d.ts │ │ ├── cluster.d.ts │ │ ├── console.d.ts │ │ ├── constants.d.ts │ │ ├── crypto.d.ts │ │ ├── dgram.d.ts │ │ ├── diagnostics_channel.d.ts │ │ ├── dns.d.ts │ │ ├── dns │ │ └── promises.d.ts │ │ ├── dom-events.d.ts │ │ ├── domain.d.ts │ │ ├── events.d.ts │ │ ├── fs.d.ts │ │ ├── fs │ │ └── promises.d.ts │ │ ├── globals.d.ts │ │ ├── globals.global.d.ts │ │ ├── http.d.ts │ │ ├── http2.d.ts │ │ ├── https.d.ts │ │ ├── index.d.ts │ │ ├── inspector.d.ts │ │ ├── module.d.ts │ │ ├── net.d.ts │ │ ├── os.d.ts │ │ ├── package.json │ │ ├── path.d.ts │ │ ├── perf_hooks.d.ts │ │ ├── process.d.ts │ │ ├── punycode.d.ts │ │ ├── querystring.d.ts │ │ ├── readline.d.ts │ │ ├── readline │ │ └── promises.d.ts │ │ ├── repl.d.ts │ │ ├── stream.d.ts │ │ ├── stream │ │ ├── consumers.d.ts │ │ ├── promises.d.ts │ │ └── web.d.ts │ │ ├── string_decoder.d.ts │ │ ├── test.d.ts │ │ ├── timers.d.ts │ │ ├── timers │ │ └── promises.d.ts │ │ ├── tls.d.ts │ │ ├── trace_events.d.ts │ │ ├── ts4.8 │ │ ├── assert.d.ts │ │ ├── assert │ │ │ └── strict.d.ts │ │ ├── async_hooks.d.ts │ │ ├── buffer.d.ts │ │ ├── child_process.d.ts │ │ ├── cluster.d.ts │ │ ├── console.d.ts │ │ ├── constants.d.ts │ │ ├── crypto.d.ts │ │ ├── dgram.d.ts │ │ ├── diagnostics_channel.d.ts │ │ ├── dns.d.ts │ │ ├── dns │ │ │ └── promises.d.ts │ │ ├── dom-events.d.ts │ │ ├── domain.d.ts │ │ ├── events.d.ts │ │ ├── fs.d.ts │ │ ├── fs │ │ │ └── promises.d.ts │ │ ├── globals.d.ts │ │ ├── globals.global.d.ts │ │ ├── http.d.ts │ │ ├── http2.d.ts │ │ ├── https.d.ts │ │ ├── index.d.ts │ │ ├── inspector.d.ts │ │ ├── module.d.ts │ │ ├── net.d.ts │ │ ├── os.d.ts │ │ ├── path.d.ts │ │ ├── perf_hooks.d.ts │ │ ├── process.d.ts │ │ ├── punycode.d.ts │ │ ├── querystring.d.ts │ │ ├── readline.d.ts │ │ ├── readline │ │ │ └── promises.d.ts │ │ ├── repl.d.ts │ │ ├── stream.d.ts │ │ ├── stream │ │ │ ├── consumers.d.ts │ │ │ ├── promises.d.ts │ │ │ └── web.d.ts │ │ ├── string_decoder.d.ts │ │ ├── test.d.ts │ │ ├── timers.d.ts │ │ ├── timers │ │ │ └── promises.d.ts │ │ ├── tls.d.ts │ │ ├── trace_events.d.ts │ │ ├── tty.d.ts │ │ ├── url.d.ts │ │ ├── util.d.ts │ │ ├── v8.d.ts │ │ ├── vm.d.ts │ │ ├── wasi.d.ts │ │ ├── worker_threads.d.ts │ │ └── zlib.d.ts │ │ ├── tty.d.ts │ │ ├── url.d.ts │ │ ├── util.d.ts │ │ ├── v8.d.ts │ │ ├── vm.d.ts │ │ ├── wasi.d.ts │ │ ├── worker_threads.d.ts │ │ └── zlib.d.ts ├── accepts │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── ansi-styles │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── array-flatten │ ├── LICENSE │ ├── README.md │ ├── array-flatten.js │ └── package.json ├── async │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── all.js │ ├── allLimit.js │ ├── allSeries.js │ ├── any.js │ ├── anyLimit.js │ ├── anySeries.js │ ├── apply.js │ ├── applyEach.js │ ├── applyEachSeries.js │ ├── asyncify.js │ ├── auto.js │ ├── autoInject.js │ ├── bower.json │ ├── cargo.js │ ├── cargoQueue.js │ ├── compose.js │ ├── concat.js │ ├── concatLimit.js │ ├── concatSeries.js │ ├── constant.js │ ├── detect.js │ ├── detectLimit.js │ ├── detectSeries.js │ ├── dir.js │ ├── dist │ │ ├── async.js │ │ ├── async.min.js │ │ └── async.mjs │ ├── doDuring.js │ ├── doUntil.js │ ├── doWhilst.js │ ├── during.js │ ├── each.js │ ├── eachLimit.js │ ├── eachOf.js │ ├── eachOfLimit.js │ ├── eachOfSeries.js │ ├── eachSeries.js │ ├── ensureAsync.js │ ├── every.js │ ├── everyLimit.js │ ├── everySeries.js │ ├── filter.js │ ├── filterLimit.js │ ├── filterSeries.js │ ├── find.js │ ├── findLimit.js │ ├── findSeries.js │ ├── flatMap.js │ ├── flatMapLimit.js │ ├── flatMapSeries.js │ ├── foldl.js │ ├── foldr.js │ ├── forEach.js │ ├── forEachLimit.js │ ├── forEachOf.js │ ├── forEachOfLimit.js │ ├── forEachOfSeries.js │ ├── forEachSeries.js │ ├── forever.js │ ├── groupBy.js │ ├── groupByLimit.js │ ├── groupBySeries.js │ ├── index.js │ ├── inject.js │ ├── internal │ │ ├── DoublyLinkedList.js │ │ ├── Heap.js │ │ ├── applyEach.js │ │ ├── asyncEachOfLimit.js │ │ ├── awaitify.js │ │ ├── breakLoop.js │ │ ├── consoleFunc.js │ │ ├── createTester.js │ │ ├── eachOfLimit.js │ │ ├── filter.js │ │ ├── getIterator.js │ │ ├── initialParams.js │ │ ├── isArrayLike.js │ │ ├── iterator.js │ │ ├── map.js │ │ ├── once.js │ │ ├── onlyOnce.js │ │ ├── parallel.js │ │ ├── promiseCallback.js │ │ ├── queue.js │ │ ├── range.js │ │ ├── reject.js │ │ ├── setImmediate.js │ │ ├── withoutIndex.js │ │ └── wrapAsync.js │ ├── log.js │ ├── map.js │ ├── mapLimit.js │ ├── mapSeries.js │ ├── mapValues.js │ ├── mapValuesLimit.js │ ├── mapValuesSeries.js │ ├── memoize.js │ ├── nextTick.js │ ├── package.json │ ├── parallel.js │ ├── parallelLimit.js │ ├── priorityQueue.js │ ├── queue.js │ ├── race.js │ ├── reduce.js │ ├── reduceRight.js │ ├── reflect.js │ ├── reflectAll.js │ ├── reject.js │ ├── rejectLimit.js │ ├── rejectSeries.js │ ├── retry.js │ ├── retryable.js │ ├── select.js │ ├── selectLimit.js │ ├── selectSeries.js │ ├── seq.js │ ├── series.js │ ├── setImmediate.js │ ├── some.js │ ├── someLimit.js │ ├── someSeries.js │ ├── sortBy.js │ ├── timeout.js │ ├── times.js │ ├── timesLimit.js │ ├── timesSeries.js │ ├── transform.js │ ├── tryEach.js │ ├── unmemoize.js │ ├── until.js │ ├── waterfall.js │ ├── whilst.js │ └── wrapSync.js ├── balanced-match │ ├── .github │ │ └── FUNDING.yml │ ├── LICENSE.md │ ├── README.md │ ├── index.js │ └── package.json ├── base64id │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── lib │ │ └── base64id.js │ └── package.json ├── body-parser │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── index.js │ ├── lib │ │ ├── read.js │ │ └── types │ │ │ ├── json.js │ │ │ ├── raw.js │ │ │ ├── text.js │ │ │ └── urlencoded.js │ └── package.json ├── brace-expansion │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── bytes │ ├── History.md │ ├── LICENSE │ ├── Readme.md │ ├── index.js │ └── package.json ├── call-bind │ ├── .eslintignore │ ├── .eslintrc │ ├── .github │ │ └── FUNDING.yml │ ├── .nycrc │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── callBound.js │ ├── index.js │ ├── package.json │ └── test │ │ ├── callBound.js │ │ └── index.js ├── chalk │ ├── index.d.ts │ ├── license │ ├── package.json │ ├── readme.md │ └── source │ │ ├── index.js │ │ ├── templates.js │ │ └── util.js ├── cluster-key-slot │ ├── .eslintrc │ ├── LICENSE │ ├── README.md │ ├── index.d.ts │ ├── lib │ │ └── index.js │ └── package.json ├── color-convert │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── conversions.js │ ├── index.js │ ├── package.json │ └── route.js ├── color-name │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── concat-map │ ├── .travis.yml │ ├── LICENSE │ ├── README.markdown │ ├── example │ │ └── map.js │ ├── index.js │ ├── package.json │ └── test │ │ └── map.js ├── content-disposition │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── content-type │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── cookie-signature │ ├── .npmignore │ ├── History.md │ ├── Readme.md │ ├── index.js │ └── package.json ├── cookie │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── index.js │ └── package.json ├── cors │ ├── CONTRIBUTING.md │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── lib │ │ └── index.js │ └── package.json ├── debug │ ├── .coveralls.yml │ ├── .eslintrc │ ├── .npmignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── component.json │ ├── karma.conf.js │ ├── node.js │ ├── package.json │ └── src │ │ ├── browser.js │ │ ├── debug.js │ │ ├── index.js │ │ ├── inspector-log.js │ │ └── node.js ├── depd │ ├── History.md │ ├── LICENSE │ ├── Readme.md │ ├── index.js │ ├── lib │ │ └── browser │ │ │ └── index.js │ └── package.json ├── destroy │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── ee-first │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── ejs │ ├── LICENSE │ ├── README.md │ ├── bin │ │ └── cli.js │ ├── ejs.js │ ├── ejs.min.js │ ├── jakefile.js │ ├── lib │ │ ├── ejs.js │ │ └── utils.js │ ├── package.json │ └── usage.txt ├── encodeurl │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── engine.io-parser │ ├── LICENSE │ ├── Readme.md │ ├── build │ │ ├── cjs │ │ │ ├── commons.d.ts │ │ │ ├── commons.js │ │ │ ├── contrib │ │ │ │ ├── base64-arraybuffer.d.ts │ │ │ │ └── base64-arraybuffer.js │ │ │ ├── decodePacket.browser.d.ts │ │ │ ├── decodePacket.browser.js │ │ │ ├── decodePacket.d.ts │ │ │ ├── decodePacket.js │ │ │ ├── encodePacket.browser.d.ts │ │ │ ├── encodePacket.browser.js │ │ │ ├── encodePacket.d.ts │ │ │ ├── encodePacket.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ └── esm │ │ │ ├── commons.d.ts │ │ │ ├── commons.js │ │ │ ├── contrib │ │ │ ├── base64-arraybuffer.d.ts │ │ │ └── base64-arraybuffer.js │ │ │ ├── decodePacket.browser.d.ts │ │ │ ├── decodePacket.browser.js │ │ │ ├── decodePacket.d.ts │ │ │ ├── decodePacket.js │ │ │ ├── encodePacket.browser.d.ts │ │ │ ├── encodePacket.browser.js │ │ │ ├── encodePacket.d.ts │ │ │ ├── encodePacket.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ └── package.json ├── engine.io │ ├── LICENSE │ ├── README.md │ ├── build │ │ ├── engine.io.d.ts │ │ ├── engine.io.js │ │ ├── parser-v3 │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── utf8.d.ts │ │ │ └── utf8.js │ │ ├── server.d.ts │ │ ├── server.js │ │ ├── socket.d.ts │ │ ├── socket.js │ │ ├── transport.d.ts │ │ ├── transport.js │ │ ├── transports-uws │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── polling.d.ts │ │ │ ├── polling.js │ │ │ ├── websocket.d.ts │ │ │ └── websocket.js │ │ ├── transports │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── polling-jsonp.d.ts │ │ │ ├── polling-jsonp.js │ │ │ ├── polling.d.ts │ │ │ ├── polling.js │ │ │ ├── websocket.d.ts │ │ │ ├── websocket.js │ │ │ ├── webtransport.d.ts │ │ │ └── webtransport.js │ │ ├── userver.d.ts │ │ └── userver.js │ ├── node_modules │ │ ├── cookie │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── debug │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── browser.js │ │ │ │ ├── common.js │ │ │ │ ├── index.js │ │ │ │ └── node.js │ │ └── ms │ │ │ ├── index.js │ │ │ ├── license.md │ │ │ ├── package.json │ │ │ └── readme.md │ ├── package.json │ └── wrapper.mjs ├── escape-html │ ├── LICENSE │ ├── Readme.md │ ├── index.js │ └── package.json ├── etag │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── express │ ├── History.md │ ├── LICENSE │ ├── Readme.md │ ├── index.js │ ├── lib │ │ ├── application.js │ │ ├── express.js │ │ ├── middleware │ │ │ ├── init.js │ │ │ └── query.js │ │ ├── request.js │ │ ├── response.js │ │ ├── router │ │ │ ├── index.js │ │ │ ├── layer.js │ │ │ └── route.js │ │ ├── utils.js │ │ └── view.js │ └── package.json ├── filelist │ ├── README.md │ ├── index.d.ts │ ├── index.js │ ├── jakefile.js │ ├── node_modules │ │ ├── brace-expansion │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ └── minimatch │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ └── path.js │ │ │ ├── minimatch.js │ │ │ └── package.json │ └── package.json ├── finalhandler │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── index.js │ └── package.json ├── forwarded │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── fresh │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── function-bind │ ├── .editorconfig │ ├── .eslintrc │ ├── .jscs.json │ ├── .npmignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── implementation.js │ ├── index.js │ ├── package.json │ └── test │ │ ├── .eslintrc │ │ └── index.js ├── generic-pool │ ├── README.md │ ├── index.d.ts │ ├── index.js │ ├── lib │ │ ├── DefaultEvictor.js │ │ ├── Deferred.js │ │ ├── Deque.js │ │ ├── DequeIterator.js │ │ ├── DoublyLinkedList.js │ │ ├── DoublyLinkedListIterator.js │ │ ├── Pool.js │ │ ├── PoolDefaults.js │ │ ├── PoolOptions.js │ │ ├── PooledResource.js │ │ ├── PooledResourceStateEnum.js │ │ ├── PriorityQueue.js │ │ ├── Queue.js │ │ ├── ResourceLoan.js │ │ ├── ResourceRequest.js │ │ ├── errors.js │ │ ├── factoryValidator.js │ │ └── utils.js │ └── package.json ├── get-intrinsic │ ├── .eslintrc │ ├── .github │ │ └── FUNDING.yml │ ├── .nycrc │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ ├── package.json │ └── test │ │ └── GetIntrinsic.js ├── has-flag │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── has-proto │ ├── .eslintrc │ ├── .github │ │ └── FUNDING.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ ├── package.json │ └── test │ │ └── index.js ├── has-symbols │ ├── .eslintrc │ ├── .github │ │ └── FUNDING.yml │ ├── .nycrc │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ ├── package.json │ ├── shams.js │ └── test │ │ ├── index.js │ │ ├── shams │ │ ├── core-js.js │ │ └── get-own-property-symbols.js │ │ └── tests.js ├── has │ ├── LICENSE-MIT │ ├── README.md │ ├── package.json │ ├── src │ │ └── index.js │ └── test │ │ └── index.js ├── http-errors │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── iconv-lite │ ├── Changelog.md │ ├── LICENSE │ ├── README.md │ ├── encodings │ │ ├── dbcs-codec.js │ │ ├── dbcs-data.js │ │ ├── index.js │ │ ├── internal.js │ │ ├── sbcs-codec.js │ │ ├── sbcs-data-generated.js │ │ ├── sbcs-data.js │ │ ├── tables │ │ │ ├── big5-added.json │ │ │ ├── cp936.json │ │ │ ├── cp949.json │ │ │ ├── cp950.json │ │ │ ├── eucjp.json │ │ │ ├── gb18030-ranges.json │ │ │ ├── gbk-added.json │ │ │ └── shiftjis.json │ │ ├── utf16.js │ │ └── utf7.js │ ├── lib │ │ ├── bom-handling.js │ │ ├── extend-node.js │ │ ├── index.d.ts │ │ ├── index.js │ │ └── streams.js │ └── package.json ├── inherits │ ├── LICENSE │ ├── README.md │ ├── inherits.js │ ├── inherits_browser.js │ └── package.json ├── ipaddr.js │ ├── LICENSE │ ├── README.md │ ├── ipaddr.min.js │ ├── lib │ │ ├── ipaddr.js │ │ └── ipaddr.js.d.ts │ └── package.json ├── jake │ ├── Makefile │ ├── README.md │ ├── bin │ │ ├── bash_completion.sh │ │ └── cli.js │ ├── jakefile.js │ ├── lib │ │ ├── api.js │ │ ├── jake.js │ │ ├── loader.js │ │ ├── namespace.js │ │ ├── package_task.js │ │ ├── parseargs.js │ │ ├── program.js │ │ ├── publish_task.js │ │ ├── rule.js │ │ ├── task │ │ │ ├── directory_task.js │ │ │ ├── file_task.js │ │ │ ├── index.js │ │ │ └── task.js │ │ ├── test_task.js │ │ └── utils │ │ │ ├── file.js │ │ │ ├── index.js │ │ │ └── logger.js │ ├── package.json │ ├── test │ │ ├── integration │ │ │ ├── concurrent.js │ │ │ ├── file.js │ │ │ ├── file_task.js │ │ │ ├── helpers.js │ │ │ ├── jakefile.js │ │ │ ├── jakelib │ │ │ │ ├── concurrent.jake.js │ │ │ │ ├── publish.jake.js │ │ │ │ ├── required_module.jake.js │ │ │ │ └── rule.jake.js │ │ │ ├── list_tasks.js │ │ │ ├── publish_task.js │ │ │ ├── rule.js │ │ │ ├── selfdep.js │ │ │ └── task_base.js │ │ └── unit │ │ │ ├── jakefile.js │ │ │ ├── namespace.js │ │ │ └── parseargs.js │ └── usage.txt ├── jsonpath-plus │ ├── .babelrc.json │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.cjs │ ├── CHANGES.md │ ├── LICENSE-MIT.txt │ ├── README.md │ ├── demo │ │ ├── index.css │ │ ├── index.html │ │ ├── index.js │ │ └── node-import-test.js │ ├── dist │ │ ├── index-browser-esm.js │ │ ├── index-browser-esm.min.js │ │ ├── index-browser-esm.min.js.map │ │ ├── index-browser-umd.cjs │ │ ├── index-browser-umd.min.cjs │ │ ├── index-browser-umd.min.cjs.map │ │ ├── index-node-cjs.cjs │ │ └── index-node-esm.js │ ├── licenseInfo.json │ ├── package.json │ └── src │ │ ├── jsonpath-browser.js │ │ ├── jsonpath-node.js │ │ ├── jsonpath.d.ts │ │ ├── jsonpath.js │ │ └── tsconfig.json ├── just-clone │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── index.cjs │ ├── index.d.ts │ ├── index.mjs │ ├── index.tests.ts │ ├── package.json │ └── rollup.config.js ├── media-typer │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── merge-descriptors │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── methods │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── mime-db │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── db.json │ ├── index.js │ └── package.json ├── mime-types │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── mime │ ├── .npmignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── cli.js │ ├── mime.js │ ├── package.json │ ├── src │ │ ├── build.js │ │ └── test.js │ └── types.json ├── minimatch │ ├── LICENSE │ ├── README.md │ ├── minimatch.js │ └── package.json ├── ms │ ├── index.js │ ├── license.md │ ├── package.json │ └── readme.md ├── negotiator │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ ├── lib │ │ ├── charset.js │ │ ├── encoding.js │ │ ├── language.js │ │ └── mediaType.js │ └── package.json ├── object-assign │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── object-inspect │ ├── .eslintrc │ ├── .github │ │ └── FUNDING.yml │ ├── .nycrc │ ├── CHANGELOG.md │ ├── LICENSE │ ├── example │ │ ├── all.js │ │ ├── circular.js │ │ ├── fn.js │ │ └── inspect.js │ ├── index.js │ ├── package-support.json │ ├── package.json │ ├── readme.markdown │ ├── test-core-js.js │ ├── test │ │ ├── bigint.js │ │ ├── browser │ │ │ └── dom.js │ │ ├── circular.js │ │ ├── deep.js │ │ ├── element.js │ │ ├── err.js │ │ ├── fakes.js │ │ ├── fn.js │ │ ├── has.js │ │ ├── holes.js │ │ ├── indent-option.js │ │ ├── inspect.js │ │ ├── lowbyte.js │ │ ├── number.js │ │ ├── quoteStyle.js │ │ ├── toStringTag.js │ │ ├── undef.js │ │ └── values.js │ └── util.inspect.js ├── on-finished │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── parseurl │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── path-to-regexp │ ├── History.md │ ├── LICENSE │ ├── Readme.md │ ├── index.js │ └── package.json ├── proxy-addr │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── qs │ ├── .editorconfig │ ├── .eslintrc │ ├── .github │ │ └── FUNDING.yml │ ├── .nycrc │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README.md │ ├── dist │ │ └── qs.js │ ├── lib │ │ ├── formats.js │ │ ├── index.js │ │ ├── parse.js │ │ ├── stringify.js │ │ └── utils.js │ ├── package.json │ └── test │ │ ├── parse.js │ │ ├── stringify.js │ │ └── utils.js ├── range-parser │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── raw-body │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── index.d.ts │ ├── index.js │ └── package.json ├── redis-om │ ├── CHANGELOG │ ├── LICENSE │ ├── README.md │ ├── dist │ │ ├── index.d.ts │ │ └── index.js │ ├── docs │ │ ├── .nojekyll │ │ ├── README.md │ │ └── classes │ │ │ ├── AbstractSearch.md │ │ │ ├── ArrayHashInput.md │ │ │ ├── Circle.md │ │ │ ├── Client.md │ │ │ ├── Field.md │ │ │ ├── FieldNotInSchema.md │ │ │ ├── InvalidHashInput.md │ │ │ ├── InvalidHashValue.md │ │ │ ├── InvalidInput.md │ │ │ ├── InvalidJsonInput.md │ │ │ ├── InvalidJsonValue.md │ │ │ ├── InvalidSchema.md │ │ │ ├── InvalidValue.md │ │ │ ├── NestedHashInput.md │ │ │ ├── NullJsonInput.md │ │ │ ├── NullJsonValue.md │ │ │ ├── PointOutOfRange.md │ │ │ ├── RawSearch.md │ │ │ ├── RedisOmError.md │ │ │ ├── Repository.md │ │ │ ├── Schema.md │ │ │ ├── Search.md │ │ │ ├── SearchError.md │ │ │ ├── SemanticSearchError.md │ │ │ ├── Where.md │ │ │ └── WhereField.md │ ├── logo.svg │ └── package.json ├── redis │ ├── LICENSE │ ├── README.md │ ├── dist │ │ ├── index.d.ts │ │ └── index.js │ └── package.json ├── safe-buffer │ ├── LICENSE │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json ├── safer-buffer │ ├── LICENSE │ ├── Porting-Buffer.md │ ├── Readme.md │ ├── dangerous.js │ ├── package.json │ ├── safer.js │ └── tests.js ├── send │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── index.js │ ├── node_modules │ │ └── ms │ │ │ ├── index.js │ │ │ ├── license.md │ │ │ ├── package.json │ │ │ └── readme.md │ └── package.json ├── serve-static │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── setprototypeof │ ├── LICENSE │ ├── README.md │ ├── index.d.ts │ ├── index.js │ ├── package.json │ └── test │ │ └── index.js ├── side-channel │ ├── .eslintignore │ ├── .eslintrc │ ├── .github │ │ └── FUNDING.yml │ ├── .nycrc │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ ├── package.json │ └── test │ │ └── index.js ├── socket.io-adapter │ ├── LICENSE │ ├── Readme.md │ ├── dist │ │ ├── contrib │ │ │ ├── yeast.d.ts │ │ │ └── yeast.js │ │ ├── index.d.ts │ │ └── index.js │ └── package.json ├── socket.io-parser │ ├── LICENSE │ ├── Readme.md │ ├── build │ │ ├── cjs │ │ │ ├── binary.d.ts │ │ │ ├── binary.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── is-binary.d.ts │ │ │ ├── is-binary.js │ │ │ └── package.json │ │ ├── esm-debug │ │ │ ├── binary.d.ts │ │ │ ├── binary.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── is-binary.d.ts │ │ │ ├── is-binary.js │ │ │ └── package.json │ │ └── esm │ │ │ ├── binary.d.ts │ │ │ ├── binary.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── is-binary.d.ts │ │ │ ├── is-binary.js │ │ │ └── package.json │ ├── node_modules │ │ ├── debug │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── browser.js │ │ │ │ ├── common.js │ │ │ │ ├── index.js │ │ │ │ └── node.js │ │ └── ms │ │ │ ├── index.js │ │ │ ├── license.md │ │ │ ├── package.json │ │ │ └── readme.md │ └── package.json ├── socket.io │ ├── LICENSE │ ├── Readme.md │ ├── client-dist │ │ ├── socket.io.esm.min.js │ │ ├── socket.io.esm.min.js.map │ │ ├── socket.io.js │ │ ├── socket.io.js.map │ │ ├── socket.io.min.js │ │ ├── socket.io.min.js.map │ │ ├── socket.io.msgpack.min.js │ │ └── socket.io.msgpack.min.js.map │ ├── dist │ │ ├── broadcast-operator.d.ts │ │ ├── broadcast-operator.js │ │ ├── client.d.ts │ │ ├── client.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── namespace.d.ts │ │ ├── namespace.js │ │ ├── parent-namespace.d.ts │ │ ├── parent-namespace.js │ │ ├── socket.d.ts │ │ ├── socket.js │ │ ├── typed-events.d.ts │ │ ├── typed-events.js │ │ ├── uws.d.ts │ │ └── uws.js │ ├── node_modules │ │ ├── debug │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── browser.js │ │ │ │ ├── common.js │ │ │ │ ├── index.js │ │ │ │ └── node.js │ │ └── ms │ │ │ ├── index.js │ │ │ ├── license.md │ │ │ ├── package.json │ │ │ └── readme.md │ ├── package.json │ └── wrapper.mjs ├── statuses │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── codes.json │ ├── index.js │ └── package.json ├── supports-color │ ├── browser.js │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── toidentifier │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── type-is │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── ulid │ ├── LICENSE │ ├── README.md │ ├── bin │ │ └── cli.js │ ├── dist │ │ ├── index.d.ts │ │ ├── index.esm.js │ │ ├── index.js │ │ └── index.umd.js │ ├── package.json │ └── stubs │ │ └── crypto.js ├── unpipe │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── utils-merge │ ├── .npmignore │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── vary │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── ws │ ├── LICENSE │ ├── README.md │ ├── browser.js │ ├── index.js │ ├── lib │ │ ├── buffer-util.js │ │ ├── constants.js │ │ ├── event-target.js │ │ ├── extension.js │ │ ├── limiter.js │ │ ├── permessage-deflate.js │ │ ├── receiver.js │ │ ├── sender.js │ │ ├── stream.js │ │ ├── subprotocol.js │ │ ├── validation.js │ │ ├── websocket-server.js │ │ └── websocket.js │ ├── package.json │ └── wrapper.mjs └── yallist │ ├── LICENSE │ ├── README.md │ ├── iterator.js │ ├── package.json │ └── yallist.js ├── package-lock.json ├── package.json ├── repository.js └── views ├── chat.ejs └── login.ejs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadrax4/redis-socketIO/083f65d50c05d30de810f6b21cbe5d2c361aaa5f/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # redis-socketIO 2 | -------------------------------------------------------------------------------- /initRedis.js: -------------------------------------------------------------------------------- 1 | import { createClient } from 'redis' 2 | 3 | export const redis = createClient() 4 | redis.on('error', (error) => console.error(error)) 5 | await redis.connect(); -------------------------------------------------------------------------------- /node_modules/.bin/ejs: -------------------------------------------------------------------------------- 1 | ../ejs/bin/cli.js -------------------------------------------------------------------------------- /node_modules/.bin/jake: -------------------------------------------------------------------------------- 1 | ../jake/bin/cli.js -------------------------------------------------------------------------------- /node_modules/.bin/mime: -------------------------------------------------------------------------------- 1 | ../mime/cli.js -------------------------------------------------------------------------------- /node_modules/.bin/ulid: -------------------------------------------------------------------------------- 1 | ../ulid/bin/cli.js -------------------------------------------------------------------------------- /node_modules/@redis/bloom/dist/commands/bloom/ADD.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare function transformArguments(key: string, item: string): Array; 3 | export { transformBooleanReply as transformReply } from '@redis/client/dist/lib/commands/generic-transformers'; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/bloom/dist/commands/bloom/CARD.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare const IS_READ_ONLY = true; 3 | export declare function transformArguments(key: string): Array; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/bloom/dist/commands/bloom/EXISTS.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare const IS_READ_ONLY = true; 3 | export declare function transformArguments(key: string, item: string): Array; 4 | export { transformBooleanReply as transformReply } from '@redis/client/dist/lib/commands/generic-transformers'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/bloom/dist/commands/bloom/LOADCHUNK.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '@redis/client/dist/lib/commands'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: string, iteretor: number, chunk: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): 'OK'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/bloom/dist/commands/bloom/MADD.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare function transformArguments(key: string, items: Array): Array; 3 | export { transformBooleanArrayReply as transformReply } from '@redis/client/dist/lib/commands/generic-transformers'; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/bloom/dist/commands/bloom/MEXISTS.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare const IS_READ_ONLY = true; 3 | export declare function transformArguments(key: string, items: Array): Array; 4 | export { transformBooleanArrayReply as transformReply } from '@redis/client/dist/lib/commands/generic-transformers'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/bloom/dist/commands/bloom/RESERVE.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | interface ReserveOptions { 3 | EXPANSION?: number; 4 | NONSCALING?: true; 5 | } 6 | export declare function transformArguments(key: string, errorRate: number, capacity: number, options?: ReserveOptions): Array; 7 | export declare function transformReply(): 'OK'; 8 | export {}; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/bloom/dist/commands/count-min-sketch/INCRBY.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | interface IncrByItem { 3 | item: string; 4 | incrementBy: number; 5 | } 6 | export declare function transformArguments(key: string, items: IncrByItem | Array): Array; 7 | export declare function transformReply(): Array; 8 | export {}; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/bloom/dist/commands/count-min-sketch/INITBYDIM.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare function transformArguments(key: string, width: number, depth: number): Array; 3 | export declare function transformReply(): 'OK'; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/bloom/dist/commands/count-min-sketch/INITBYPROB.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare function transformArguments(key: string, error: number, probability: number): Array; 3 | export declare function transformReply(): 'OK'; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/bloom/dist/commands/count-min-sketch/MERGE.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | interface Sketch { 3 | name: string; 4 | weight: number; 5 | } 6 | type Sketches = Array | Array; 7 | export declare function transformArguments(dest: string, src: Sketches): Array; 8 | export declare function transformReply(): 'OK'; 9 | export {}; 10 | -------------------------------------------------------------------------------- /node_modules/@redis/bloom/dist/commands/count-min-sketch/QUERY.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArguments } from '@redis/client/dist/lib/commands'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare const IS_READ_ONLY = true; 4 | export declare function transformArguments(key: string, items: string | Array): RedisCommandArguments; 5 | export declare function transformReply(): Array; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/bloom/dist/commands/cuckoo/ADD.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare function transformArguments(key: string, item: string): Array; 3 | export { transformBooleanReply as transformReply } from '@redis/client/dist/lib/commands/generic-transformers'; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/bloom/dist/commands/cuckoo/ADDNX.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare function transformArguments(key: string, item: string): Array; 3 | export { transformBooleanReply as transformReply } from '@redis/client/dist/lib/commands/generic-transformers'; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/bloom/dist/commands/cuckoo/COUNT.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare function transformArguments(key: string, item: string): Array; 3 | export declare function transformReply(): number; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/bloom/dist/commands/cuckoo/COUNT.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.FIRST_KEY_INDEX = void 0; 4 | exports.FIRST_KEY_INDEX = 1; 5 | function transformArguments(key, item) { 6 | return ['CF.COUNT', key, item]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/bloom/dist/commands/cuckoo/DEL.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare function transformArguments(key: string, item: string): Array; 3 | export { transformBooleanReply as transformReply } from '@redis/client/dist/lib/commands/generic-transformers'; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/bloom/dist/commands/cuckoo/EXISTS.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare const IS_READ_ONLY = true; 3 | export declare function transformArguments(key: string, item: string): Array; 4 | export { transformBooleanReply as transformReply } from '@redis/client/dist/lib/commands/generic-transformers'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/bloom/dist/commands/cuckoo/LOADCHUNK.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '@redis/client/dist/lib/commands'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: string, iterator: number, chunk: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): 'OK'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/bloom/dist/commands/t-digest/ADD.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '@redis/client/dist/lib/commands'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, values: Array): RedisCommandArguments; 4 | export declare function transformReply(): 'OK'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/bloom/dist/commands/t-digest/MAX.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '@redis/client/dist/lib/commands'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare const IS_READ_ONLY = true; 4 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 5 | export { transformDoubleReply as transformReply } from '.'; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/bloom/dist/commands/t-digest/MIN.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '@redis/client/dist/lib/commands'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare const IS_READ_ONLY = true; 4 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 5 | export { transformDoubleReply as transformReply } from '.'; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/bloom/dist/commands/t-digest/RESET.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '@redis/client/dist/lib/commands'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): 'OK'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/bloom/dist/commands/t-digest/RESET.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.FIRST_KEY_INDEX = void 0; 4 | exports.FIRST_KEY_INDEX = 1; 5 | function transformArguments(key) { 6 | return ['TDIGEST.RESET', key]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/bloom/dist/commands/top-k/ADD.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArguments } from '@redis/client/dist/lib/commands'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: string, items: string | Array): RedisCommandArguments; 4 | export declare function transformReply(): Array; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/bloom/dist/commands/top-k/COUNT.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArguments } from '@redis/client/dist/lib/commands'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare const IS_READ_ONLY = true; 4 | export declare function transformArguments(key: string, items: string | Array): RedisCommandArguments; 5 | export declare function transformReply(): Array; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/bloom/dist/commands/top-k/INCRBY.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | interface IncrByItem { 3 | item: string; 4 | incrementBy: number; 5 | } 6 | export declare function transformArguments(key: string, items: IncrByItem | Array): Array; 7 | export declare function transformReply(): Array; 8 | export {}; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/bloom/dist/commands/top-k/LIST.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare const IS_READ_ONLY = true; 3 | export declare function transformArguments(key: string): Array; 4 | export declare function transformReply(): Array; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/bloom/dist/commands/top-k/QUERY.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArguments } from '@redis/client/dist/lib/commands'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare const IS_READ_ONLY = true; 4 | export declare function transformArguments(key: string, items: string | Array): RedisCommandArguments; 5 | export declare function transformReply(): Array; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/bloom/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export { default } from './commands'; 2 | -------------------------------------------------------------------------------- /node_modules/@redis/bloom/dist/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.default = void 0; 4 | var commands_1 = require("./commands"); 5 | Object.defineProperty(exports, "default", { enumerable: true, get: function () { return commands_1.default; } }); 6 | -------------------------------------------------------------------------------- /node_modules/@redis/client/README.md: -------------------------------------------------------------------------------- 1 | # @redis/client 2 | 3 | The source code and documentation for this package are in the main [node-redis](https://github.com/redis/node-redis) repo. 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/client/RESP2/composers/buffer.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | import { Composer } from './interface'; 3 | export default class BufferComposer implements Composer { 4 | private chunks; 5 | write(buffer: Buffer): void; 6 | end(buffer: Buffer): Buffer; 7 | reset(): void; 8 | } 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/client/RESP2/composers/interface.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | export interface Composer { 3 | write(buffer: Buffer): void; 4 | end(buffer: Buffer): T; 5 | reset(): void; 6 | } 7 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/client/RESP2/composers/interface.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/client/RESP2/composers/string.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | import { Composer } from './interface'; 3 | export default class StringComposer implements Composer { 4 | private decoder; 5 | private string; 6 | write(buffer: Buffer): void; 7 | end(buffer: Buffer): string; 8 | reset(): void; 9 | } 10 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/client/RESP2/encoder.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '../../commands'; 2 | export default function encodeCommand(args: RedisCommandArguments): Array; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/command-options.d.ts: -------------------------------------------------------------------------------- 1 | declare const symbol: unique symbol; 2 | export type CommandOptions = T & { 3 | readonly [symbol]: true; 4 | }; 5 | export declare function commandOptions(options: T): CommandOptions; 6 | export declare function isCommandOptions(options: any): options is CommandOptions; 7 | export {}; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ACL_CAT.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare function transformArguments(categoryName?: RedisCommandArgument): RedisCommandArguments; 3 | export declare function transformReply(): Array; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ACL_DELUSER.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare function transformArguments(username: RedisCommandArgument | Array): RedisCommandArguments; 3 | export declare function transformReply(): number; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ACL_DRYRUN.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const IS_READ_ONLY = true; 3 | export declare function transformArguments(username: RedisCommandArgument, command: Array): RedisCommandArguments; 4 | export declare function transformReply(): RedisCommandArgument; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ACL_GENPASS.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare function transformArguments(bits?: number): RedisCommandArguments; 3 | export declare function transformReply(): RedisCommandArgument; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ACL_LIST.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare function transformArguments(): RedisCommandArguments; 3 | export declare function transformReply(): Array; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ACL_LIST.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['ACL', 'LIST']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ACL_LOAD.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare function transformArguments(): RedisCommandArguments; 3 | export declare function transformReply(): RedisCommandArgument; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ACL_LOAD.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['ACL', 'LOAD']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ACL_LOG_RESET.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare function transformArguments(): RedisCommandArguments; 3 | export declare function transformReply(): RedisCommandArgument; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ACL_LOG_RESET.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['ACL', 'LOG', 'RESET']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ACL_SAVE.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare function transformArguments(): RedisCommandArguments; 3 | export declare function transformReply(): RedisCommandArgument; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ACL_SAVE.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['ACL', 'SAVE']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ACL_SETUSER.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare function transformArguments(username: RedisCommandArgument, rule: RedisCommandArgument | Array): RedisCommandArguments; 3 | export declare function transformReply(): RedisCommandArgument; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ACL_USERS.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare function transformArguments(): RedisCommandArguments; 3 | export declare function transformReply(): Array; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ACL_USERS.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['ACL', 'USERS']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ACL_WHOAMI.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare function transformArguments(): RedisCommandArguments; 3 | export declare function transformReply(): RedisCommandArgument; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ACL_WHOAMI.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['ACL', 'WHOAMI']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/APPEND.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, value: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/APPEND.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.FIRST_KEY_INDEX = void 0; 4 | exports.FIRST_KEY_INDEX = 1; 5 | function transformArguments(key, value) { 6 | return ['APPEND', key, value]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ASKING.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArguments, RedisCommandArgument } from '.'; 2 | export declare function transformArguments(): RedisCommandArguments; 3 | export declare function transformReply(): RedisCommandArgument; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ASKING.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['ASKING']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/AUTH.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export interface AuthOptions { 3 | username?: RedisCommandArgument; 4 | password: RedisCommandArgument; 5 | } 6 | export declare function transformArguments({ username, password }: AuthOptions): RedisCommandArguments; 7 | export declare function transformReply(): RedisCommandArgument; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/BGREWRITEAOF.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare function transformArguments(): RedisCommandArguments; 3 | export declare function transformReply(): RedisCommandArgument; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/BGREWRITEAOF.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['BGREWRITEAOF']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/BGSAVE.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | interface BgSaveOptions { 3 | SCHEDULE?: true; 4 | } 5 | export declare function transformArguments(options?: BgSaveOptions): RedisCommandArguments; 6 | export declare function transformReply(): RedisCommandArgument; 7 | export {}; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/BRPOP.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument | Array, timeout: number): RedisCommandArguments; 4 | export { transformReply } from './BLPOP'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/BRPOPLPUSH.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(source: RedisCommandArgument, destination: RedisCommandArgument, timeout: number): RedisCommandArguments; 4 | export declare function transformReply(): RedisCommandArgument | null; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/BZPOPMIN.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument | Array, timeout: number): RedisCommandArguments; 4 | export { transformReply } from './BZPOPMAX'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLIENT_CACHING.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | import { RedisCommandArguments } from '.'; 3 | export declare function transformArguments(value: boolean): RedisCommandArguments; 4 | export declare function transformReply(): 'OK' | Buffer; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLIENT_CACHING.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments(value) { 5 | return [ 6 | 'CLIENT', 7 | 'CACHING', 8 | value ? 'YES' : 'NO' 9 | ]; 10 | } 11 | exports.transformArguments = transformArguments; 12 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLIENT_GETNAME.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArguments } from '.'; 2 | export declare function transformArguments(): RedisCommandArguments; 3 | export declare function transformReply(): string | null; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLIENT_GETNAME.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['CLIENT', 'GETNAME']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLIENT_GETREDIR.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArguments } from '.'; 2 | export declare function transformArguments(): RedisCommandArguments; 3 | export declare function transformReply(): number; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLIENT_GETREDIR.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['CLIENT', 'GETREDIR']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLIENT_ID.d.ts: -------------------------------------------------------------------------------- 1 | export declare const IS_READ_ONLY = true; 2 | export declare function transformArguments(): Array; 3 | export declare function transformReply(): number; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLIENT_ID.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.IS_READ_ONLY = void 0; 4 | exports.IS_READ_ONLY = true; 5 | function transformArguments() { 6 | return ['CLIENT', 'ID']; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLIENT_NO-EVICT.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | import { RedisCommandArguments } from '.'; 3 | export declare function transformArguments(value: boolean): RedisCommandArguments; 4 | export declare function transformReply(): 'OK' | Buffer; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLIENT_NO-EVICT.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments(value) { 5 | return [ 6 | 'CLIENT', 7 | 'NO-EVICT', 8 | value ? 'ON' : 'OFF' 9 | ]; 10 | } 11 | exports.transformArguments = transformArguments; 12 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLIENT_PAUSE.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | import { RedisCommandArguments } from '.'; 3 | export declare function transformArguments(timeout: number, mode?: 'WRITE' | 'ALL'): RedisCommandArguments; 4 | export declare function transformReply(): 'OK' | Buffer; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLIENT_SETNAME.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare function transformArguments(name: RedisCommandArgument): RedisCommandArguments; 3 | export declare function transformReply(): RedisCommandArgument; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLIENT_SETNAME.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments(name) { 5 | return ['CLIENT', 'SETNAME', name]; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLIENT_UNPAUSE.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | import { RedisCommandArguments } from '.'; 3 | export declare function transformArguments(): RedisCommandArguments; 4 | export declare function transformReply(): 'OK' | Buffer; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLIENT_UNPAUSE.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['CLIENT', 'UNPAUSE']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_ADDSLOTS.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArguments } from '.'; 2 | export declare function transformArguments(slots: number | Array): RedisCommandArguments; 3 | export declare function transformReply(): string; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_ADDSLOTSRANGE.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArguments } from '.'; 2 | import { SlotRange } from './generic-transformers'; 3 | export declare function transformArguments(ranges: SlotRange | Array): RedisCommandArguments; 4 | export declare function transformReply(): 'OK'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_BUMPEPOCH.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(): Array; 2 | export declare function transformReply(): 'BUMPED' | 'STILL'; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_BUMPEPOCH.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['CLUSTER', 'BUMPEPOCH']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_COUNT-FAILURE-REPORTS.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(nodeId: string): Array; 2 | export declare function transformReply(): number; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_COUNT-FAILURE-REPORTS.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments(nodeId) { 5 | return ['CLUSTER', 'COUNT-FAILURE-REPORTS', nodeId]; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_COUNTKEYSINSLOT.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(slot: number): Array; 2 | export declare function transformReply(): number; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_COUNTKEYSINSLOT.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments(slot) { 5 | return ['CLUSTER', 'COUNTKEYSINSLOT', slot.toString()]; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_DELSLOTS.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArguments } from '.'; 2 | export declare function transformArguments(slots: number | Array): RedisCommandArguments; 3 | export declare function transformReply(): 'OK'; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_DELSLOTSRANGE.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArguments } from '.'; 2 | import { SlotRange } from './generic-transformers'; 3 | export declare function transformArguments(ranges: SlotRange | Array): RedisCommandArguments; 4 | export declare function transformReply(): 'OK'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_FAILOVER.d.ts: -------------------------------------------------------------------------------- 1 | export declare enum FailoverModes { 2 | FORCE = "FORCE", 3 | TAKEOVER = "TAKEOVER" 4 | } 5 | export declare function transformArguments(mode?: FailoverModes): Array; 6 | export declare function transformReply(): 'OK'; 7 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_FLUSHSLOTS.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(): Array; 2 | export declare function transformReply(): 'OK'; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_FLUSHSLOTS.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['CLUSTER', 'FLUSHSLOTS']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_FORGET.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(nodeId: string): Array; 2 | export declare function transformReply(): 'OK'; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_FORGET.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments(nodeId) { 5 | return ['CLUSTER', 'FORGET', nodeId]; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_GETKEYSINSLOT.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(slot: number, count: number): Array; 2 | export declare function transformReply(): Array; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_GETKEYSINSLOT.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments(slot, count) { 5 | return ['CLUSTER', 'GETKEYSINSLOT', slot.toString(), count.toString()]; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_KEYSLOT.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(key: string): Array; 2 | export declare function transformReply(): number; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_KEYSLOT.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments(key) { 5 | return ['CLUSTER', 'KEYSLOT', key]; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_MEET.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(ip: string, port: number): Array; 2 | export declare function transformReply(): 'OK'; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_MEET.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments(ip, port) { 5 | return ['CLUSTER', 'MEET', ip, port.toString()]; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_MYID.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(): Array; 2 | export declare function transformReply(): string; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_MYID.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['CLUSTER', 'MYID']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_REPLICAS.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(nodeId: string): Array; 2 | export { transformReply } from './CLUSTER_NODES'; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_REPLICATE.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(nodeId: string): Array; 2 | export declare function transformReply(): 'OK'; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_REPLICATE.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments(nodeId) { 5 | return ['CLUSTER', 'REPLICATE', nodeId]; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_RESET.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(mode?: 'HARD' | 'SOFT'): Array; 2 | export declare function transformReply(): string; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_SAVECONFIG.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(): Array; 2 | export declare function transformReply(): 'OK'; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_SAVECONFIG.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['CLUSTER', 'SAVECONFIG']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_SET-CONFIG-EPOCH.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(configEpoch: number): Array; 2 | export declare function transformReply(): 'OK'; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_SET-CONFIG-EPOCH.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments(configEpoch) { 5 | return ['CLUSTER', 'SET-CONFIG-EPOCH', configEpoch.toString()]; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CLUSTER_SETSLOT.d.ts: -------------------------------------------------------------------------------- 1 | export declare enum ClusterSlotStates { 2 | IMPORTING = "IMPORTING", 3 | MIGRATING = "MIGRATING", 4 | STABLE = "STABLE", 5 | NODE = "NODE" 6 | } 7 | export declare function transformArguments(slot: number, state: ClusterSlotStates, nodeId?: string): Array; 8 | export declare function transformReply(): 'OK'; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/COMMAND.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArguments } from '.'; 2 | import { CommandRawReply, CommandReply } from './generic-transformers'; 3 | export declare const IS_READ_ONLY = true; 4 | export declare function transformArguments(): RedisCommandArguments; 5 | export declare function transformReply(reply: Array): Array; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/COMMAND_COUNT.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArguments } from '.'; 2 | export declare const IS_READ_ONLY = true; 3 | export declare function transformArguments(): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/COMMAND_COUNT.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.IS_READ_ONLY = void 0; 4 | exports.IS_READ_ONLY = true; 5 | function transformArguments() { 6 | return ['COMMAND', 'COUNT']; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/COMMAND_GETKEYS.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const IS_READ_ONLY = true; 3 | export declare function transformArguments(args: Array): RedisCommandArguments; 4 | export declare function transformReply(): Array; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/COMMAND_GETKEYS.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.IS_READ_ONLY = void 0; 4 | exports.IS_READ_ONLY = true; 5 | function transformArguments(args) { 6 | return ['COMMAND', 'GETKEYS', ...args]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CONFIG_GET.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(parameter: string): Array; 2 | export { transformTuplesReply as transformReply } from './generic-transformers'; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CONFIG_RESETSTAT.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(): Array; 2 | export declare function transformReply(): string; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CONFIG_RESETSTAT.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['CONFIG', 'RESETSTAT']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CONFIG_REWRITE.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(): Array; 2 | export declare function transformReply(): string; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/CONFIG_REWRITE.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['CONFIG', 'REWRITE']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/DBSIZE.d.ts: -------------------------------------------------------------------------------- 1 | export declare const IS_READ_ONLY = true; 2 | export declare function transformArguments(): Array; 3 | export declare function transformReply(): number; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/DBSIZE.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.IS_READ_ONLY = void 0; 4 | exports.IS_READ_ONLY = true; 5 | function transformArguments() { 6 | return ['DBSIZE']; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/DECR.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/DECR.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.FIRST_KEY_INDEX = void 0; 4 | exports.FIRST_KEY_INDEX = 1; 5 | function transformArguments(key) { 6 | return ['DECR', key]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/DECRBY.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, decrement: number): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/DECRBY.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.FIRST_KEY_INDEX = void 0; 4 | exports.FIRST_KEY_INDEX = 1; 5 | function transformArguments(key, decrement) { 6 | return ['DECRBY', key, decrement.toString()]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/DEL.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(keys: RedisCommandArgument | Array): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/DISCARD.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument } from '.'; 2 | export declare function transformArguments(): Array; 3 | export declare function transformReply(): RedisCommandArgument; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/DISCARD.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['DISCARD']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/DUMP.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): RedisCommandArgument; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/DUMP.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.FIRST_KEY_INDEX = void 0; 4 | exports.FIRST_KEY_INDEX = 1; 5 | function transformArguments(key) { 6 | return ['DUMP', key]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ECHO.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const IS_READ_ONLY = true; 3 | export declare function transformArguments(message: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): RedisCommandArgument; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ECHO.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.IS_READ_ONLY = void 0; 4 | exports.IS_READ_ONLY = true; 5 | function transformArguments(message) { 6 | return ['ECHO', message]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/EVAL.d.ts: -------------------------------------------------------------------------------- 1 | import { evalFirstKeyIndex, EvalOptions } from './generic-transformers'; 2 | export declare const FIRST_KEY_INDEX: typeof evalFirstKeyIndex; 3 | export declare function transformArguments(script: string, options?: EvalOptions): Array; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/EVALSHA.d.ts: -------------------------------------------------------------------------------- 1 | import { evalFirstKeyIndex, EvalOptions } from './generic-transformers'; 2 | export declare const FIRST_KEY_INDEX: typeof evalFirstKeyIndex; 3 | export declare function transformArguments(sha1: string, options?: EvalOptions): Array; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/EVALSHA_RO.d.ts: -------------------------------------------------------------------------------- 1 | import { evalFirstKeyIndex, EvalOptions } from './generic-transformers'; 2 | export declare const FIRST_KEY_INDEX: typeof evalFirstKeyIndex; 3 | export declare const IS_READ_ONLY = true; 4 | export declare function transformArguments(sha1: string, options?: EvalOptions): Array; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/EVAL_RO.d.ts: -------------------------------------------------------------------------------- 1 | import { evalFirstKeyIndex, EvalOptions } from './generic-transformers'; 2 | export declare const FIRST_KEY_INDEX: typeof evalFirstKeyIndex; 3 | export declare const IS_READ_ONLY = true; 4 | export declare function transformArguments(script: string, options?: EvalOptions): Array; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/EXISTS.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare const IS_READ_ONLY = true; 4 | export declare function transformArguments(keys: RedisCommandArgument | Array): RedisCommandArguments; 5 | export declare function transformReply(): number; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/EXPIRE.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, seconds: number, mode?: 'NX' | 'XX' | 'GT' | 'LT'): RedisCommandArguments; 4 | export { transformBooleanReply as transformReply } from './generic-transformers'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/EXPIREAT.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, timestamp: number | Date, mode?: 'NX' | 'XX' | 'GT' | 'LT'): RedisCommandArguments; 4 | export { transformBooleanReply as transformReply } from './generic-transformers'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/EXPIRETIME.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/EXPIRETIME.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.FIRST_KEY_INDEX = void 0; 4 | exports.FIRST_KEY_INDEX = 1; 5 | function transformArguments(key) { 6 | return ['EXPIRETIME', key]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/FCALL.d.ts: -------------------------------------------------------------------------------- 1 | import { evalFirstKeyIndex, EvalOptions } from './generic-transformers'; 2 | export declare const FIRST_KEY_INDEX: typeof evalFirstKeyIndex; 3 | export declare function transformArguments(fn: string, options?: EvalOptions): Array; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/FCALL_RO.d.ts: -------------------------------------------------------------------------------- 1 | import { evalFirstKeyIndex, EvalOptions } from './generic-transformers'; 2 | export declare const FIRST_KEY_INDEX: typeof evalFirstKeyIndex; 3 | export declare const IS_READ_ONLY = true; 4 | export declare function transformArguments(fn: string, options?: EvalOptions): Array; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/FLUSHALL.d.ts: -------------------------------------------------------------------------------- 1 | export declare enum RedisFlushModes { 2 | ASYNC = "ASYNC", 3 | SYNC = "SYNC" 4 | } 5 | export declare function transformArguments(mode?: RedisFlushModes): Array; 6 | export declare function transformReply(): string; 7 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/FLUSHDB.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisFlushModes } from './FLUSHALL'; 2 | export declare function transformArguments(mode?: RedisFlushModes): Array; 3 | export declare function transformReply(): string; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/FLUSHDB.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments(mode) { 5 | const args = ['FLUSHDB']; 6 | if (mode) { 7 | args.push(mode); 8 | } 9 | return args; 10 | } 11 | exports.transformArguments = transformArguments; 12 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/FUNCTION_DELETE.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArguments } from '.'; 2 | export declare function transformArguments(library: string): RedisCommandArguments; 3 | export declare function transformReply(): 'OK'; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/FUNCTION_DELETE.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments(library) { 5 | return ['FUNCTION', 'DELETE', library]; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/FUNCTION_DUMP.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare function transformArguments(): RedisCommandArguments; 3 | export declare function transformReply(): RedisCommandArgument; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/FUNCTION_DUMP.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['FUNCTION', 'DUMP']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/FUNCTION_FLUSH.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArguments } from '.'; 2 | export declare function transformArguments(mode?: 'ASYNC' | 'SYNC'): RedisCommandArguments; 3 | export declare function transformReply(): 'OK'; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/FUNCTION_KILL.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArguments } from '.'; 2 | export declare function transformArguments(): RedisCommandArguments; 3 | export declare function transformReply(): 'OK'; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/FUNCTION_KILL.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['FUNCTION', 'KILL']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/FUNCTION_LIST.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArguments } from '.'; 2 | import { FunctionListItemReply, FunctionListRawItemReply } from './generic-transformers'; 3 | export declare function transformArguments(pattern?: string): RedisCommandArguments; 4 | export declare function transformReply(reply: Array): Array; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/FUNCTION_LOAD.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArguments } from '.'; 2 | interface FunctionLoadOptions { 3 | REPLACE?: boolean; 4 | } 5 | export declare function transformArguments(code: string, options?: FunctionLoadOptions): RedisCommandArguments; 6 | export declare function transformReply(): string; 7 | export {}; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/FUNCTION_RESTORE.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare function transformArguments(dump: RedisCommandArgument, mode?: 'FLUSH' | 'APPEND' | 'REPLACE'): RedisCommandArguments; 3 | export declare function transformReply(): 'OK'; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/GET.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare const IS_READ_ONLY = true; 4 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 5 | export declare function transformReply(): RedisCommandArgument | null; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/GETDEL.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): RedisCommandArgument | null; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/GETDEL.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.FIRST_KEY_INDEX = void 0; 4 | exports.FIRST_KEY_INDEX = 1; 5 | function transformArguments(key) { 6 | return ['GETDEL', key]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/GETRANGE.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare const IS_READ_ONLY = true; 4 | export declare function transformArguments(key: RedisCommandArgument, start: number, end: number): RedisCommandArguments; 5 | export declare function transformReply(): RedisCommandArgument; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/GETSET.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, value: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): RedisCommandArgument | null; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/GETSET.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.FIRST_KEY_INDEX = void 0; 4 | exports.FIRST_KEY_INDEX = 1; 5 | function transformArguments(key, value) { 6 | return ['GETSET', key, value]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/HDEL.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, field: RedisCommandArgument | Array): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/HEXISTS.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, field: RedisCommandArgument): RedisCommandArguments; 4 | export { transformBooleanReply as transformReply } from './generic-transformers'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/HINCRBY.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, field: RedisCommandArgument, increment: number): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/HINCRBY.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.FIRST_KEY_INDEX = void 0; 4 | exports.FIRST_KEY_INDEX = 1; 5 | function transformArguments(key, field, increment) { 6 | return ['HINCRBY', key, field, increment.toString()]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/HINCRBYFLOAT.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, field: RedisCommandArgument, increment: number): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/HKEYS.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): Array; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/HKEYS.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.FIRST_KEY_INDEX = void 0; 4 | exports.FIRST_KEY_INDEX = 1; 5 | function transformArguments(key) { 6 | return ['HKEYS', key]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/HLEN.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/HLEN.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.FIRST_KEY_INDEX = void 0; 4 | exports.FIRST_KEY_INDEX = 1; 5 | function transformArguments(key) { 6 | return ['HLEN', key]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/HRANDFIELD.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare const IS_READ_ONLY = true; 4 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 5 | export declare function transformReply(): RedisCommandArgument | null; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/HRANDFIELD_COUNT.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export { FIRST_KEY_INDEX, IS_READ_ONLY } from './HRANDFIELD'; 3 | export declare function transformArguments(key: RedisCommandArgument, count: number): RedisCommandArguments; 4 | export declare function transformReply(): Array; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/HRANDFIELD_COUNT_WITHVALUES.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export { FIRST_KEY_INDEX, IS_READ_ONLY } from './HRANDFIELD_COUNT'; 3 | export declare function transformArguments(key: RedisCommandArgument, count: number): RedisCommandArguments; 4 | export { transformTuplesReply as transformReply } from './generic-transformers'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/HSETNX.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, field: RedisCommandArgument, value: RedisCommandArgument): RedisCommandArguments; 4 | export { transformBooleanReply as transformReply } from './generic-transformers'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/HSTRLEN.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, field: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/HSTRLEN.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.FIRST_KEY_INDEX = void 0; 4 | exports.FIRST_KEY_INDEX = 1; 5 | function transformArguments(key, field) { 6 | return ['HSTRLEN', key, field]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/HVALS.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): Array; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/HVALS.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.FIRST_KEY_INDEX = void 0; 4 | exports.FIRST_KEY_INDEX = 1; 5 | function transformArguments(key) { 6 | return ['HVALS', key]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/INCR.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/INCR.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.FIRST_KEY_INDEX = void 0; 4 | exports.FIRST_KEY_INDEX = 1; 5 | function transformArguments(key) { 6 | return ['INCR', key]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/INCRBY.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, increment: number): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/INCRBY.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.FIRST_KEY_INDEX = void 0; 4 | exports.FIRST_KEY_INDEX = 1; 5 | function transformArguments(key, increment) { 6 | return ['INCRBY', key, increment.toString()]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/INCRBYFLOAT.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, increment: number): RedisCommandArguments; 4 | export declare function transformReply(): RedisCommandArgument; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/INCRBYFLOAT.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.FIRST_KEY_INDEX = void 0; 4 | exports.FIRST_KEY_INDEX = 1; 5 | function transformArguments(key, increment) { 6 | return ['INCRBYFLOAT', key, increment.toString()]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/INFO.d.ts: -------------------------------------------------------------------------------- 1 | export declare const IS_READ_ONLY = true; 2 | export declare function transformArguments(section?: string): Array; 3 | export declare function transformReply(): string; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/KEYS.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare function transformArguments(pattern: RedisCommandArgument): RedisCommandArguments; 3 | export declare function transformReply(): Array; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/KEYS.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments(pattern) { 5 | return ['KEYS', pattern]; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/LASTSAVE.d.ts: -------------------------------------------------------------------------------- 1 | export declare const IS_READ_ONLY = true; 2 | export declare function transformArguments(): Array; 3 | export declare function transformReply(reply: number): Date; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/LATENCY_DOCTOR.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(): Array; 2 | export declare function transformReply(): string; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/LATENCY_DOCTOR.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['LATENCY', 'DOCTOR']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/LATENCY_GRAPH.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments(event) { 5 | return ['LATENCY', 'GRAPH', event]; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/LATENCY_LATEST.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArguments } from '.'; 2 | export declare function transformArguments(): RedisCommandArguments; 3 | export declare function transformReply(): Array<[ 4 | name: string, 5 | timestamp: number, 6 | latestLatency: number, 7 | allTimeLatency: number 8 | ]>; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/LATENCY_LATEST.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['LATENCY', 'LATEST']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/LCS_LEN.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export { FIRST_KEY_INDEX, IS_READ_ONLY } from './LCS'; 3 | export declare function transformArguments(key1: RedisCommandArgument, key2: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/LINDEX.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare const IS_READ_ONLY = true; 4 | export declare function transformArguments(key: RedisCommandArgument, index: number): RedisCommandArguments; 5 | export declare function transformReply(): RedisCommandArgument | null; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/LLEN.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare const IS_READ_ONLY = true; 4 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 5 | export declare function transformReply(): number; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/LOLWUT.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument } from '.'; 2 | export declare const IS_READ_ONLY = true; 3 | export declare function transformArguments(version?: number, ...optionalArguments: Array): Array; 4 | export declare function transformReply(): RedisCommandArgument; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/LPOP.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): RedisCommandArgument | null; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/LPOP.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.FIRST_KEY_INDEX = void 0; 4 | exports.FIRST_KEY_INDEX = 1; 5 | function transformArguments(key) { 6 | return ['LPOP', key]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/LPOP_COUNT.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, count: number): RedisCommandArguments; 4 | export declare function transformReply(): Array | null; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/LPOP_COUNT.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.FIRST_KEY_INDEX = void 0; 4 | exports.FIRST_KEY_INDEX = 1; 5 | function transformArguments(key, count) { 6 | return ['LPOP', key, count.toString()]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/LPUSH.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, elements: RedisCommandArgument | Array): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/LPUSHX.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, element: RedisCommandArgument | Array): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/LREM.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, count: number, element: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/LSET.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, index: number, element: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): RedisCommandArgument; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/LTRIM.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, start: number, stop: number): RedisCommandArguments; 4 | export declare function transformReply(): RedisCommandArgument; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/MEMORY_DOCTOR.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(): Array; 2 | export declare function transformReply(): string; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/MEMORY_DOCTOR.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['MEMORY', 'DOCTOR']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/MEMORY_MALLOC-STATS.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(): Array; 2 | export declare function transformReply(): string; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/MEMORY_MALLOC-STATS.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['MEMORY', 'MALLOC-STATS']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/MEMORY_PURGE.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(): Array; 2 | export declare function transformReply(): string; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/MEMORY_PURGE.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['MEMORY', 'PURGE']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/MEMORY_USAGE.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare const IS_READ_ONLY = true; 3 | interface MemoryUsageOptions { 4 | SAMPLES?: number; 5 | } 6 | export declare function transformArguments(key: string, options?: MemoryUsageOptions): Array; 7 | export declare function transformReply(): number | null; 8 | export {}; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/MGET.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare const IS_READ_ONLY = true; 4 | export declare function transformArguments(keys: Array): RedisCommandArguments; 5 | export declare function transformReply(): Array; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/MODULE_LIST.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(): Array; 2 | export declare function transformReply(): string; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/MODULE_LIST.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['MODULE', 'LIST']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/MODULE_LOAD.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(path: string, moduleArgs?: Array): Array; 2 | export declare function transformReply(): string; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/MODULE_UNLOAD.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(name: string): Array; 2 | export declare function transformReply(): string; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/MODULE_UNLOAD.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments(name) { 5 | return ['MODULE', 'UNLOAD', name]; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/MOVE.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare function transformArguments(key: string, db: number): Array; 3 | export { transformBooleanReply as transformReply } from './generic-transformers'; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/MSETNX.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArguments } from '.'; 2 | import { MSetArguments } from './MSET'; 3 | export declare const FIRST_KEY_INDEX = 1; 4 | export declare function transformArguments(toSet: MSetArguments): RedisCommandArguments; 5 | export { transformBooleanReply as transformReply } from './generic-transformers'; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/OBJECT_ENCODING.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 2; 3 | export declare const IS_READ_ONLY = true; 4 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 5 | export declare function transformReply(): string | null; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/OBJECT_FREQ.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 2; 3 | export declare const IS_READ_ONLY = true; 4 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 5 | export declare function transformReply(): number | null; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/OBJECT_IDLETIME.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 2; 3 | export declare const IS_READ_ONLY = true; 4 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 5 | export declare function transformReply(): number | null; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/OBJECT_REFCOUNT.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 2; 3 | export declare const IS_READ_ONLY = true; 4 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 5 | export declare function transformReply(): number | null; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/PERSIST.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 4 | export { transformBooleanReply as transformReply } from './generic-transformers'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/PEXPIRE.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, milliseconds: number, mode?: 'NX' | 'XX' | 'GT' | 'LT'): RedisCommandArguments; 4 | export { transformBooleanReply as transformReply } from './generic-transformers'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/PEXPIRETIME.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/PEXPIRETIME.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.FIRST_KEY_INDEX = void 0; 4 | exports.FIRST_KEY_INDEX = 1; 5 | function transformArguments(key) { 6 | return ['PEXPIRETIME', key]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/PFADD.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, element: RedisCommandArgument | Array): RedisCommandArguments; 4 | export { transformBooleanReply as transformReply } from './generic-transformers'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/PFCOUNT.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument | Array): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/PFMERGE.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(destination: string, source: string | Array): RedisCommandArguments; 4 | export declare function transformReply(): string; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/PING.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare function transformArguments(message?: RedisCommandArgument): RedisCommandArguments; 3 | export declare function transformReply(): RedisCommandArgument; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/PING.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments(message) { 5 | const args = ['PING']; 6 | if (message) { 7 | args.push(message); 8 | } 9 | return args; 10 | } 11 | exports.transformArguments = transformArguments; 12 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/PSETEX.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, milliseconds: number, value: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): RedisCommandArgument; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/PTTL.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare const IS_READ_ONLY = true; 4 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 5 | export declare function transformReply(): number; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/PUBLISH.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const IS_READ_ONLY = true; 3 | export declare function transformArguments(channel: RedisCommandArgument, message: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/PUBLISH.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.IS_READ_ONLY = void 0; 4 | exports.IS_READ_ONLY = true; 5 | function transformArguments(channel, message) { 6 | return ['PUBLISH', channel, message]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/PUBSUB_CHANNELS.d.ts: -------------------------------------------------------------------------------- 1 | export declare const IS_READ_ONLY = true; 2 | export declare function transformArguments(pattern?: string): Array; 3 | export declare function transformReply(): Array; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/PUBSUB_NUMPAT.d.ts: -------------------------------------------------------------------------------- 1 | export declare const IS_READ_ONLY = true; 2 | export declare function transformArguments(): Array; 3 | export declare function transformReply(): string; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/PUBSUB_NUMPAT.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.IS_READ_ONLY = void 0; 4 | exports.IS_READ_ONLY = true; 5 | function transformArguments() { 6 | return ['PUBSUB', 'NUMPAT']; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/PUBSUB_NUMSUB.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const IS_READ_ONLY = true; 3 | export declare function transformArguments(channels?: Array | RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(rawReply: Array): Record; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/PUBSUB_SHARDCHANNELS.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const IS_READ_ONLY = true; 3 | export declare function transformArguments(pattern?: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): Array; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/RANDOMKEY.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const IS_READ_ONLY = true; 3 | export declare function transformArguments(): RedisCommandArguments; 4 | export declare function transformReply(): RedisCommandArgument | null; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/RANDOMKEY.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.IS_READ_ONLY = void 0; 4 | exports.IS_READ_ONLY = true; 5 | function transformArguments() { 6 | return ['RANDOMKEY']; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/READONLY.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(): Array; 2 | export declare function transformReply(): string; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/READONLY.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['READONLY']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/READWRITE.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(): Array; 2 | export declare function transformReply(): string; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/READWRITE.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['READWRITE']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/RENAME.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, newKey: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): RedisCommandArgument; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/RENAME.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.FIRST_KEY_INDEX = void 0; 4 | exports.FIRST_KEY_INDEX = 1; 5 | function transformArguments(key, newKey) { 6 | return ['RENAME', key, newKey]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/RENAMENX.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, newKey: RedisCommandArgument): RedisCommandArguments; 4 | export { transformBooleanReply as transformReply } from './generic-transformers'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/REPLICAOF.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(host: string, port: number): Array; 2 | export declare function transformReply(): string; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/REPLICAOF.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments(host, port) { 5 | return ['REPLICAOF', host, port.toString()]; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/RESTORE-ASKING.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(): Array; 2 | export declare function transformReply(): string; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/RESTORE-ASKING.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['RESTORE-ASKING']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/RPOP.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): RedisCommandArgument | null; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/RPOP.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.FIRST_KEY_INDEX = void 0; 4 | exports.FIRST_KEY_INDEX = 1; 5 | function transformArguments(key) { 6 | return ['RPOP', key]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/RPOPLPUSH.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(source: RedisCommandArgument, destination: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): RedisCommandArgument | null; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/RPOPLPUSH.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.FIRST_KEY_INDEX = void 0; 4 | exports.FIRST_KEY_INDEX = 1; 5 | function transformArguments(source, destination) { 6 | return ['RPOPLPUSH', source, destination]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/RPOP_COUNT.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, count: number): RedisCommandArguments; 4 | export declare function transformReply(): Array | null; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/RPOP_COUNT.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.FIRST_KEY_INDEX = void 0; 4 | exports.FIRST_KEY_INDEX = 1; 5 | function transformArguments(key, count) { 6 | return ['RPOP', key, count.toString()]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/RPUSH.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, element: RedisCommandArgument | Array): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/RPUSHX.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, element: RedisCommandArgument | Array): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SADD.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, members: RedisCommandArgument | Array): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SAVE.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument } from '.'; 2 | export declare function transformArguments(): Array; 3 | export declare function transformReply(): RedisCommandArgument; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SAVE.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['SAVE']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SCARD.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare function transformArguments(key: string): Array; 3 | export declare function transformReply(): number; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SCARD.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.FIRST_KEY_INDEX = void 0; 4 | exports.FIRST_KEY_INDEX = 1; 5 | function transformArguments(key) { 6 | return ['SCARD', key]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SCRIPT_DEBUG.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(mode: 'YES' | 'SYNC' | 'NO'): Array; 2 | export declare function transformReply(): string; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SCRIPT_DEBUG.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments(mode) { 5 | return ['SCRIPT', 'DEBUG', mode]; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SCRIPT_EXISTS.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArguments } from '.'; 2 | export declare function transformArguments(sha1: string | Array): RedisCommandArguments; 3 | export { transformBooleanArrayReply as transformReply } from './generic-transformers'; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SCRIPT_FLUSH.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(mode?: 'ASYNC' | 'SYNC'): Array; 2 | export declare function transformReply(): string; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SCRIPT_KILL.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(): Array; 2 | export declare function transformReply(): string; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SCRIPT_KILL.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['SCRIPT', 'KILL']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SCRIPT_LOAD.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(script: string): Array; 2 | export declare function transformReply(): string; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SCRIPT_LOAD.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments(script) { 5 | return ['SCRIPT', 'LOAD', script]; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SDIFFSTORE.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(destination: RedisCommandArgument, keys: RedisCommandArgument | Array): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SETBIT.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | import { BitValue } from './generic-transformers'; 3 | export declare const FIRST_KEY_INDEX = 1; 4 | export declare function transformArguments(key: RedisCommandArgument, offset: number, value: BitValue): RedisCommandArguments; 5 | export declare function transformReply(): BitValue; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SETEX.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, seconds: number, value: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): RedisCommandArgument; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SETNX.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, value: RedisCommandArgument): RedisCommandArguments; 4 | export { transformBooleanReply as transformReply } from './generic-transformers'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SETRANGE.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, offset: number, value: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SETRANGE.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.FIRST_KEY_INDEX = void 0; 4 | exports.FIRST_KEY_INDEX = 1; 5 | function transformArguments(key, offset, value) { 6 | return ['SETRANGE', key, offset.toString(), value]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SHUTDOWN.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(mode?: 'NOSAVE' | 'SAVE'): Array; 2 | export declare function transformReply(): void; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SHUTDOWN.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments(mode) { 5 | const args = ['SHUTDOWN']; 6 | if (mode) { 7 | args.push(mode); 8 | } 9 | return args; 10 | } 11 | exports.transformArguments = transformArguments; 12 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SINTERSTORE.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(destination: RedisCommandArgument, keys: RedisCommandArgument | Array): RedisCommandArguments; 4 | export declare function transformReply(): Array; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SISMEMBER.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, member: RedisCommandArgument): RedisCommandArguments; 4 | export { transformBooleanReply as transformReply } from './generic-transformers'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SMEMBERS.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): Array; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SMEMBERS.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.FIRST_KEY_INDEX = void 0; 4 | exports.FIRST_KEY_INDEX = 1; 5 | function transformArguments(key) { 6 | return ['SMEMBERS', key]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SMISMEMBER.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, members: Array): RedisCommandArguments; 4 | export { transformBooleanArrayReply as transformReply } from './generic-transformers'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SORT.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArguments } from '.'; 2 | import { SortOptions } from './generic-transformers'; 3 | export declare const FIRST_KEY_INDEX = 1; 4 | export declare function transformArguments(key: string, options?: SortOptions): RedisCommandArguments; 5 | export declare function transformReply(): Array; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SORT_STORE.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArguments } from '.'; 2 | import { SortOptions } from './generic-transformers'; 3 | export declare const FIRST_KEY_INDEX = 1; 4 | export declare function transformArguments(source: string, destination: string, options?: SortOptions): RedisCommandArguments; 5 | export declare function transformReply(): number; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SPOP.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, count?: number): RedisCommandArguments; 4 | export declare function transformReply(): Array; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SPUBLISH.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const IS_READ_ONLY = true; 3 | export declare const FIRST_KEY_INDEX = 1; 4 | export declare function transformArguments(channel: RedisCommandArgument, message: RedisCommandArgument): RedisCommandArguments; 5 | export declare function transformReply(): number; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SRANDMEMBER.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): RedisCommandArgument | null; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SRANDMEMBER.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.FIRST_KEY_INDEX = void 0; 4 | exports.FIRST_KEY_INDEX = 1; 5 | function transformArguments(key) { 6 | return ['SRANDMEMBER', key]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SRANDMEMBER_COUNT.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export { FIRST_KEY_INDEX } from './SRANDMEMBER'; 3 | export declare function transformArguments(key: RedisCommandArgument, count: number): RedisCommandArguments; 4 | export declare function transformReply(): Array; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SREM.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, members: RedisCommandArgument | Array): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/STRLEN.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare const IS_READ_ONLY = true; 4 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 5 | export declare function transformReply(): number; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SUNIONSTORE.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(destination: RedisCommandArgument, keys: RedisCommandArgument | Array): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SWAPDB.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(index1: number, index2: number): Array; 2 | export declare function transformReply(): string; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/SWAPDB.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments(index1, index2) { 5 | return ['SWAPDB', index1.toString(), index2.toString()]; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/TIME.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(): Array; 2 | interface TimeReply extends Date { 3 | microseconds: number; 4 | } 5 | export declare function transformReply(reply: [string, string]): TimeReply; 6 | export {}; 7 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/TOUCH.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument | Array): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/TTL.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare const IS_READ_ONLY = true; 4 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 5 | export declare function transformReply(): number; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/TYPE.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare const IS_READ_ONLY = true; 4 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 5 | export declare function transformReply(): RedisCommandArgument; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/UNLINK.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument | Array): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/UNWATCH.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(): Array; 2 | export declare function transformReply(): string; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/UNWATCH.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['UNWATCH']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/WAIT.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare function transformArguments(numberOfReplicas: number, timeout: number): Array; 3 | export declare function transformReply(): number; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/WATCH.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: string | Array): RedisCommandArguments; 4 | export declare function transformReply(): string; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/XACK.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, group: RedisCommandArgument, id: RedisCommandArgument | Array): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/XDEL.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, id: RedisCommandArgument | Array): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/XGROUP_DELCONSUMER.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 2; 3 | export declare function transformArguments(key: RedisCommandArgument, group: RedisCommandArgument, consumer: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/XGROUP_DESTROY.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 2; 3 | export declare function transformArguments(key: RedisCommandArgument, group: RedisCommandArgument): RedisCommandArguments; 4 | export { transformBooleanReply as transformReply } from './generic-transformers'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/XGROUP_SETID.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 2; 3 | export declare function transformArguments(key: RedisCommandArgument, group: RedisCommandArgument, id: RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): RedisCommandArgument; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/XGROUP_SETID.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.FIRST_KEY_INDEX = void 0; 4 | exports.FIRST_KEY_INDEX = 2; 5 | function transformArguments(key, group, id) { 6 | return ['XGROUP', 'SETID', key, group, id]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/XLEN.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare const IS_READ_ONLY = true; 4 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 5 | export declare function transformReply(): number; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ZCARD.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare const IS_READ_ONLY = true; 4 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 5 | export declare function transformReply(): number; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ZDIFFSTORE.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(destination: RedisCommandArgument, keys: Array | RedisCommandArgument): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ZINCRBY.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, increment: number, member: RedisCommandArgument): RedisCommandArguments; 4 | export { transformNumberInfinityReply as transformReply } from './generic-transformers'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ZPOPMAX.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 4 | export { transformSortedSetMemberNullReply as transformReply } from './generic-transformers'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ZPOPMAX_COUNT.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export { FIRST_KEY_INDEX } from './ZPOPMAX'; 3 | export declare function transformArguments(key: RedisCommandArgument, count: number): RedisCommandArguments; 4 | export { transformSortedSetWithScoresReply as transformReply } from './generic-transformers'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ZPOPMIN.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 4 | export { transformSortedSetMemberNullReply as transformReply } from './generic-transformers'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ZPOPMIN_COUNT.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export { FIRST_KEY_INDEX } from './ZPOPMIN'; 3 | export declare function transformArguments(key: RedisCommandArgument, count: number): RedisCommandArguments; 4 | export { transformSortedSetWithScoresReply as transformReply } from './generic-transformers'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ZRANDMEMBER.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare const IS_READ_ONLY = true; 4 | export declare function transformArguments(key: RedisCommandArgument): RedisCommandArguments; 5 | export declare function transformReply(): RedisCommandArgument | null; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ZRANDMEMBER_COUNT.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export { FIRST_KEY_INDEX, IS_READ_ONLY } from './ZRANDMEMBER'; 3 | export declare function transformArguments(key: RedisCommandArgument, count: number): RedisCommandArguments; 4 | export declare function transformReply(): Array; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ZRANK.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare const IS_READ_ONLY = true; 4 | export declare function transformArguments(key: RedisCommandArgument, member: RedisCommandArgument): RedisCommandArguments; 5 | export declare function transformReply(): number | null; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ZREM.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, member: RedisCommandArgument | Array): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ZREMRANGEBYLEX.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, min: RedisCommandArgument | number, max: RedisCommandArgument | number): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ZREMRANGEBYRANK.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, start: number, stop: number): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ZREMRANGEBYSCORE.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: RedisCommandArgument, min: RedisCommandArgument | number, max: RedisCommandArgument | number): RedisCommandArguments; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/ZREVRANK.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument, RedisCommandArguments } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare const IS_READ_ONLY = true; 4 | export declare function transformArguments(key: RedisCommandArgument, member: RedisCommandArgument): RedisCommandArguments; 5 | export declare function transformReply(): number | null; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/commands/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/utils.d.ts: -------------------------------------------------------------------------------- 1 | export declare function promiseTimeout(ms: number): Promise; 2 | -------------------------------------------------------------------------------- /node_modules/@redis/client/dist/lib/utils.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.promiseTimeout = void 0; 4 | function promiseTimeout(ms) { 5 | return new Promise(resolve => setTimeout(resolve, ms)); 6 | } 7 | exports.promiseTimeout = promiseTimeout; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/graph/dist/commands/CONFIG_GET.d.ts: -------------------------------------------------------------------------------- 1 | export declare const IS_READ_ONLY = true; 2 | export declare function transformArguments(configKey: string): Array; 3 | declare type ConfigItem = [ 4 | configKey: string, 5 | value: number 6 | ]; 7 | export declare function transformReply(): ConfigItem | Array; 8 | export {}; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/graph/dist/commands/CONFIG_GET.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.IS_READ_ONLY = void 0; 4 | exports.IS_READ_ONLY = true; 5 | function transformArguments(configKey) { 6 | return ['GRAPH.CONFIG', 'GET', configKey]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/graph/dist/commands/CONFIG_SET.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(configKey: string, value: number): Array; 2 | export declare function transformReply(): 'OK'; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/graph/dist/commands/DELETE.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare function transformArguments(key: string): Array; 3 | export declare function transformReply(): string; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/graph/dist/commands/DELETE.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.FIRST_KEY_INDEX = void 0; 4 | exports.FIRST_KEY_INDEX = 1; 5 | function transformArguments(key) { 6 | return ['GRAPH.DELETE', key]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/graph/dist/commands/EXPLAIN.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare const IS_READ_ONLY = true; 3 | export declare function transformArguments(key: string, query: string): Array; 4 | export declare function transfromReply(): Array; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/graph/dist/commands/LIST.d.ts: -------------------------------------------------------------------------------- 1 | export declare const IS_READ_ONLY = true; 2 | export declare function transformArguments(): Array; 3 | export declare function transformReply(): Array; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/graph/dist/commands/LIST.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.IS_READ_ONLY = void 0; 4 | exports.IS_READ_ONLY = true; 5 | function transformArguments() { 6 | return ['GRAPH.LIST']; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/graph/dist/commands/PROFILE.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare const IS_READ_ONLY = true; 3 | export declare function transformArguments(key: string, query: string): Array; 4 | export declare function transfromReply(): Array; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/graph/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export { default } from './commands'; 2 | export { default as Graph } from './graph'; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/json/dist/commands/ARRAPPEND.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisJSON } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: string, path: string, ...jsons: Array): Array; 4 | export declare function transformReply(): number | Array; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/json/dist/commands/ARRINDEX.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisJSON } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare const IS_READ_ONLY = true; 4 | export declare function transformArguments(key: string, path: string, json: RedisJSON, start?: number, stop?: number): Array; 5 | export declare function transformReply(): number | Array; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/json/dist/commands/ARRINSERT.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisJSON } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: string, path: string, index: number, ...jsons: Array): Array; 4 | export declare function transformReply(): number | Array; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/json/dist/commands/ARRLEN.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare const IS_READ_ONLY = true; 3 | export declare function transformArguments(key: string, path?: string): Array; 4 | export declare function transformReply(): number | Array; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/json/dist/commands/ARRPOP.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisJSON } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(key: string, path?: string, index?: number): Array; 4 | export declare function transformReply(reply: null | string | Array): null | RedisJSON | Array; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/json/dist/commands/ARRTRIM.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare function transformArguments(key: string, path: string, start: number, stop: number): Array; 3 | export declare function transformReply(): number | Array; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/json/dist/commands/DEBUG_MEMORY.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 2; 2 | export declare function transformArguments(key: string, path?: string): Array; 3 | export declare function transformReply(): number; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/json/dist/commands/DEL.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare function transformArguments(key: string, path?: string): Array; 3 | export declare function transformReply(): number; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/json/dist/commands/FORGET.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare function transformArguments(key: string, path?: string): Array; 3 | export declare function transformReply(): number; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/json/dist/commands/MGET.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisJSON } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(keys: Array, path: string): Array; 4 | export declare function transformReply(reply: Array): Array; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/json/dist/commands/NUMINCRBY.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare function transformArguments(key: string, path: string, by: number): Array; 3 | export { transformNumbersReply as transformReply } from '.'; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/json/dist/commands/NUMMULTBY.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare function transformArguments(key: string, path: string, by: number): Array; 3 | export { transformNumbersReply as transformReply } from '.'; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/json/dist/commands/OBJKEYS.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare function transformArguments(key: string, path?: string): Array; 3 | export declare function transformReply(): Array | null | Array | null>; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/json/dist/commands/OBJLEN.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare function transformArguments(key: string, path?: string): Array; 3 | export declare function transformReply(): number | null | Array; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/json/dist/commands/RESP.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare function transformArguments(key: string, path?: string): Array; 3 | declare type RESPReply = Array; 4 | export declare function transformReply(): RESPReply; 5 | export {}; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/json/dist/commands/STRLEN.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare const IS_READ_ONLY = true; 3 | export declare function transformArguments(key: string, path?: string): Array; 4 | export declare function transformReply(): number; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/json/dist/commands/TYPE.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare function transformArguments(key: string, path?: string): Array; 3 | export declare function transformReply(): string | null | Array; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/json/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export { default } from './commands'; 2 | -------------------------------------------------------------------------------- /node_modules/@redis/json/dist/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.default = void 0; 4 | var commands_1 = require("./commands"); 5 | Object.defineProperty(exports, "default", { enumerable: true, get: function () { return commands_1.default; } }); 6 | -------------------------------------------------------------------------------- /node_modules/@redis/search/dist/commands/ALIASADD.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(name: string, index: string): Array; 2 | export declare function transformReply(): 'OK'; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/search/dist/commands/ALIASADD.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments(name, index) { 5 | return ['FT.ALIASADD', name, index]; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/search/dist/commands/ALIASDEL.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(name: string, index: string): Array; 2 | export declare function transformReply(): 'OK'; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/search/dist/commands/ALIASDEL.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments(name, index) { 5 | return ['FT.ALIASDEL', name, index]; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/search/dist/commands/ALIASUPDATE.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(name: string, index: string): Array; 2 | export declare function transformReply(): 'OK'; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/search/dist/commands/ALIASUPDATE.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments(name, index) { 5 | return ['FT.ALIASUPDATE', name, index]; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/search/dist/commands/ALTER.d.ts: -------------------------------------------------------------------------------- 1 | import { RediSearchSchema } from '.'; 2 | export declare function transformArguments(index: string, schema: RediSearchSchema): Array; 3 | export declare function transformReply(): 'OK'; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/search/dist/commands/CONFIG_GET.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(option: string): string[]; 2 | interface ConfigGetReply { 3 | [option: string]: string | null; 4 | } 5 | export declare function transformReply(rawReply: Array<[string, string | null]>): ConfigGetReply; 6 | export {}; 7 | -------------------------------------------------------------------------------- /node_modules/@redis/search/dist/commands/CONFIG_SET.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(option: string, value: string): Array; 2 | export declare function transformReply(): 'OK'; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/search/dist/commands/CONFIG_SET.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments(option, value) { 5 | return ['FT.CONFIG', 'SET', option, value]; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/search/dist/commands/CURSOR_DEL.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArgument } from '@redis/client/dist/lib/commands'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(index: RedisCommandArgument, cursorId: number): RedisCommandArgument[]; 4 | export declare function transformReply(): 'OK'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/search/dist/commands/DICTADD.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArguments } from '@redis/client/dist/lib/commands'; 2 | export declare function transformArguments(dictionary: string, term: string | Array): RedisCommandArguments; 3 | export declare function transformReply(): number; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/search/dist/commands/DICTDEL.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArguments } from '@redis/client/dist/lib/commands'; 2 | export declare function transformArguments(dictionary: string, term: string | Array): RedisCommandArguments; 3 | export declare function transformReply(): number; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/search/dist/commands/DICTDUMP.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(dictionary: string): Array; 2 | export declare function transformReply(): Array; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/search/dist/commands/DICTDUMP.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments(dictionary) { 5 | return ['FT.DICTDUMP', dictionary]; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/search/dist/commands/DROPINDEX.d.ts: -------------------------------------------------------------------------------- 1 | interface DropIndexOptions { 2 | DD?: true; 3 | } 4 | export declare function transformArguments(index: string, options?: DropIndexOptions): Array; 5 | export declare function transformReply(): 'OK'; 6 | export {}; 7 | -------------------------------------------------------------------------------- /node_modules/@redis/search/dist/commands/EXPLAIN.d.ts: -------------------------------------------------------------------------------- 1 | import { Params } from "."; 2 | export declare const IS_READ_ONLY = true; 3 | interface ExplainOptions { 4 | PARAMS?: Params; 5 | DIALECT?: number; 6 | } 7 | export declare function transformArguments(index: string, query: string, options?: ExplainOptions): Array; 8 | export declare function transformReply(): string; 9 | export {}; 10 | -------------------------------------------------------------------------------- /node_modules/@redis/search/dist/commands/EXPLAINCLI.d.ts: -------------------------------------------------------------------------------- 1 | export declare const IS_READ_ONLY = true; 2 | export declare function transformArguments(index: string, query: string): Array; 3 | export declare function transformReply(): Array; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/search/dist/commands/EXPLAINCLI.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.IS_READ_ONLY = void 0; 4 | exports.IS_READ_ONLY = true; 5 | function transformArguments(index, query) { 6 | return ['FT.EXPLAINCLI', index, query]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/search/dist/commands/SUGADD.d.ts: -------------------------------------------------------------------------------- 1 | interface SugAddOptions { 2 | INCR?: true; 3 | PAYLOAD?: string; 4 | } 5 | export declare function transformArguments(key: string, string: string, score: number, options?: SugAddOptions): Array; 6 | export declare function transformReply(): number; 7 | export {}; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/search/dist/commands/SUGDEL.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(key: string, string: string): Array; 2 | export { transformBooleanReply as transformReply } from '@redis/client/dist/lib/commands/generic-transformers'; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/search/dist/commands/SUGGET.d.ts: -------------------------------------------------------------------------------- 1 | export declare const IS_READ_ONLY = true; 2 | export interface SugGetOptions { 3 | FUZZY?: true; 4 | MAX?: number; 5 | } 6 | export declare function transformArguments(key: string, prefix: string, options?: SugGetOptions): Array; 7 | export declare function transformReply(): null | Array; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/search/dist/commands/SUGLEN.d.ts: -------------------------------------------------------------------------------- 1 | export declare const IS_READ_ONLY = true; 2 | export declare function transformArguments(key: string): Array; 3 | export declare function transformReply(): number; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/search/dist/commands/SUGLEN.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = exports.IS_READ_ONLY = void 0; 4 | exports.IS_READ_ONLY = true; 5 | function transformArguments(key) { 6 | return ['FT.SUGLEN', key]; 7 | } 8 | exports.transformArguments = transformArguments; 9 | -------------------------------------------------------------------------------- /node_modules/@redis/search/dist/commands/SYNDUMP.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(index: string): Array; 2 | export declare function transformReply(): Array; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/search/dist/commands/SYNDUMP.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments(index) { 5 | return ['FT.SYNDUMP', index]; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/search/dist/commands/TAGVALS.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(index: string, fieldName: string): Array; 2 | export declare function transformReply(): Array; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/search/dist/commands/TAGVALS.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments(index, fieldName) { 5 | return ['FT.TAGVALS', index, fieldName]; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/search/dist/commands/_LIST.d.ts: -------------------------------------------------------------------------------- 1 | export declare function transformArguments(): Array; 2 | export declare function transformReply(): Array; 3 | -------------------------------------------------------------------------------- /node_modules/@redis/search/dist/commands/_LIST.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.transformArguments = void 0; 4 | function transformArguments() { 5 | return ['FT._LIST']; 6 | } 7 | exports.transformArguments = transformArguments; 8 | -------------------------------------------------------------------------------- /node_modules/@redis/search/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export { default } from './commands'; 2 | export { RediSearchSchema, SchemaFieldTypes, SchemaTextFieldPhonetics, SearchReply, VectorAlgorithms } from './commands'; 3 | export { AggregateSteps, AggregateGroupByReducers } from './commands/AGGREGATE'; 4 | export { SearchOptions } from './commands/SEARCH'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/time-series/dist/commands/CREATERULE.d.ts: -------------------------------------------------------------------------------- 1 | import { TimeSeriesAggregationType } from '.'; 2 | export declare const FIRST_KEY_INDEX = 1; 3 | export declare function transformArguments(sourceKey: string, destinationKey: string, aggregationType: TimeSeriesAggregationType, bucketDuration: number, alignTimestamp?: number): Array; 4 | export declare function transformReply(): 'OK'; 5 | -------------------------------------------------------------------------------- /node_modules/@redis/time-series/dist/commands/DECRBY.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArguments } from '@redis/client/dist/lib/commands'; 2 | import { IncrDecrOptions } from '.'; 3 | export declare const FIRST_KEY_INDEX = 1; 4 | export declare function transformArguments(key: string, value: number, options?: IncrDecrOptions): RedisCommandArguments; 5 | export declare function transformReply(): number; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/time-series/dist/commands/DEL.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArguments } from '@redis/client/dist/lib/commands'; 2 | import { Timestamp } from '.'; 3 | export declare const FIRTS_KEY_INDEX = 1; 4 | export declare function transformArguments(key: string, fromTimestamp: Timestamp, toTimestamp: Timestamp): RedisCommandArguments; 5 | export declare function transformReply(): number; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/time-series/dist/commands/DELETERULE.d.ts: -------------------------------------------------------------------------------- 1 | export declare const FIRST_KEY_INDEX = 1; 2 | export declare function transformArguments(sourceKey: string, destinationKey: string): Array; 3 | export declare function transformReply(): 'OK'; 4 | -------------------------------------------------------------------------------- /node_modules/@redis/time-series/dist/commands/INCRBY.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArguments } from '@redis/client/dist/lib/commands'; 2 | import { IncrDecrOptions } from '.'; 3 | export declare const FIRST_KEY_INDEX = 1; 4 | export declare function transformArguments(key: string, value: number, options?: IncrDecrOptions): RedisCommandArguments; 5 | export declare function transformReply(): number; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/time-series/dist/commands/QUERYINDEX.d.ts: -------------------------------------------------------------------------------- 1 | import { RedisCommandArguments } from '@redis/client/dist/lib/commands'; 2 | import { Filter } from '.'; 3 | export declare const IS_READ_ONLY = true; 4 | export declare function transformArguments(filter: Filter): RedisCommandArguments; 5 | export declare function transformReply(): Array; 6 | -------------------------------------------------------------------------------- /node_modules/@redis/time-series/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export { default } from './commands'; 2 | export { TimeSeriesDuplicatePolicies, TimeSeriesEncoding, TimeSeriesAggregationType, TimeSeriesReducers, TimeSeriesBucketTimestamp } from './commands'; 3 | -------------------------------------------------------------------------------- /node_modules/@types/node/assert/strict.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'assert/strict' { 2 | import { strict } from 'node:assert'; 3 | export = strict; 4 | } 5 | declare module 'node:assert/strict' { 6 | import { strict } from 'node:assert'; 7 | export = strict; 8 | } 9 | -------------------------------------------------------------------------------- /node_modules/@types/node/globals.global.d.ts: -------------------------------------------------------------------------------- 1 | declare var global: typeof globalThis; 2 | -------------------------------------------------------------------------------- /node_modules/@types/node/ts4.8/assert/strict.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'assert/strict' { 2 | import { strict } from 'node:assert'; 3 | export = strict; 4 | } 5 | declare module 'node:assert/strict' { 6 | import { strict } from 'node:assert'; 7 | export = strict; 8 | } 9 | -------------------------------------------------------------------------------- /node_modules/@types/node/ts4.8/globals.global.d.ts: -------------------------------------------------------------------------------- 1 | declare var global: typeof globalThis; 2 | -------------------------------------------------------------------------------- /node_modules/async/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "async", 3 | "main": "dist/async.js", 4 | "ignore": [ 5 | "bower_components", 6 | "lib", 7 | "test", 8 | "node_modules", 9 | "perf", 10 | "support", 11 | "**/.*", 12 | "*.config.js", 13 | "*.json", 14 | "index.js", 15 | "Makefile" 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /node_modules/async/internal/breakLoop.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | // A temporary value used to identify if the loop should be broken. 7 | // See #1064, #1293 8 | const breakLoop = {}; 9 | exports.default = breakLoop; 10 | module.exports = exports["default"]; -------------------------------------------------------------------------------- /node_modules/async/internal/getIterator.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | 7 | exports.default = function (coll) { 8 | return coll[Symbol.iterator] && coll[Symbol.iterator](); 9 | }; 10 | 11 | module.exports = exports["default"]; -------------------------------------------------------------------------------- /node_modules/async/internal/initialParams.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | 7 | exports.default = function (fn) { 8 | return function (...args /*, callback*/) { 9 | var callback = args.pop(); 10 | return fn.call(this, args, callback); 11 | }; 12 | }; 13 | 14 | module.exports = exports["default"]; -------------------------------------------------------------------------------- /node_modules/async/internal/isArrayLike.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | exports.default = isArrayLike; 7 | function isArrayLike(value) { 8 | return value && typeof value.length === 'number' && value.length >= 0 && value.length % 1 === 0; 9 | } 10 | module.exports = exports['default']; -------------------------------------------------------------------------------- /node_modules/async/internal/range.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | exports.default = range; 7 | function range(size) { 8 | var result = Array(size); 9 | while (size--) { 10 | result[size] = size; 11 | } 12 | return result; 13 | } 14 | module.exports = exports["default"]; -------------------------------------------------------------------------------- /node_modules/async/internal/withoutIndex.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | exports.default = _withoutIndex; 7 | function _withoutIndex(iteratee) { 8 | return (value, index, callback) => iteratee(value, callback); 9 | } 10 | module.exports = exports["default"]; -------------------------------------------------------------------------------- /node_modules/balanced-match/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | tidelift: "npm/balanced-match" 2 | patreon: juliangruber 3 | -------------------------------------------------------------------------------- /node_modules/call-bind/.eslintignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | -------------------------------------------------------------------------------- /node_modules/call-bind/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | 4 | "extends": "@ljharb", 5 | 6 | "rules": { 7 | "func-name-matching": 0, 8 | "id-length": 0, 9 | "new-cap": [2, { 10 | "capIsNewExceptions": [ 11 | "GetIntrinsic", 12 | ], 13 | }], 14 | "no-magic-numbers": 0, 15 | "operator-linebreak": [2, "before"], 16 | }, 17 | } 18 | -------------------------------------------------------------------------------- /node_modules/call-bind/.nycrc: -------------------------------------------------------------------------------- 1 | { 2 | "all": true, 3 | "check-coverage": false, 4 | "reporter": ["text-summary", "text", "html", "json"], 5 | "lines": 86, 6 | "statements": 85.93, 7 | "functions": 82.43, 8 | "branches": 76.06, 9 | "exclude": [ 10 | "coverage", 11 | "test" 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /node_modules/call-bind/README.md: -------------------------------------------------------------------------------- 1 | # call-bind 2 | Robustly `.call.bind()` a function. 3 | -------------------------------------------------------------------------------- /node_modules/cluster-key-slot/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "airbnb-base/legacy", 3 | "parserOptions":{ 4 | "ecmaFeatures": { 5 | "experimentalObjectRestSpread": true 6 | } 7 | }, 8 | "rules": { 9 | "max-len": 0, 10 | "no-plusplus": 0, 11 | "no-bitwise": 0, 12 | "no-param-reassign": 0, 13 | "no-undef": 0 14 | }, 15 | "globals": {} 16 | } 17 | -------------------------------------------------------------------------------- /node_modules/concat-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | -------------------------------------------------------------------------------- /node_modules/concat-map/example/map.js: -------------------------------------------------------------------------------- 1 | var concatMap = require('../'); 2 | var xs = [ 1, 2, 3, 4, 5, 6 ]; 3 | var ys = concatMap(xs, function (x) { 4 | return x % 2 ? [ x - 0.1, x, x + 0.1 ] : []; 5 | }); 6 | console.dir(ys); 7 | -------------------------------------------------------------------------------- /node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /node_modules/debug/.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve 2 | -------------------------------------------------------------------------------- /node_modules/debug/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "browser": true, 4 | "node": true 5 | }, 6 | "rules": { 7 | "no-console": 0, 8 | "no-empty": [1, { "allowEmptyCatch": true }] 9 | }, 10 | "extends": "eslint:recommended" 11 | } 12 | -------------------------------------------------------------------------------- /node_modules/debug/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | example 5 | *.sock 6 | dist 7 | yarn.lock 8 | coverage 9 | bower.json 10 | -------------------------------------------------------------------------------- /node_modules/debug/.travis.yml: -------------------------------------------------------------------------------- 1 | 2 | language: node_js 3 | node_js: 4 | - "6" 5 | - "5" 6 | - "4" 7 | 8 | install: 9 | - make node_modules 10 | 11 | script: 12 | - make lint 13 | - make test 14 | - make coveralls 15 | -------------------------------------------------------------------------------- /node_modules/debug/node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/node'); 2 | -------------------------------------------------------------------------------- /node_modules/debug/src/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Detect Electron renderer process, which is node, but we should 3 | * treat as a browser. 4 | */ 5 | 6 | if (typeof process !== 'undefined' && process.type === 'renderer') { 7 | module.exports = require('./browser.js'); 8 | } else { 9 | module.exports = require('./node.js'); 10 | } 11 | -------------------------------------------------------------------------------- /node_modules/encodeurl/HISTORY.md: -------------------------------------------------------------------------------- 1 | 1.0.2 / 2018-01-21 2 | ================== 3 | 4 | * Fix encoding `%` as last character 5 | 6 | 1.0.1 / 2016-06-09 7 | ================== 8 | 9 | * Fix encoding unpaired surrogates at start/end of string 10 | 11 | 1.0.0 / 2016-06-08 12 | ================== 13 | 14 | * Initial release 15 | -------------------------------------------------------------------------------- /node_modules/engine.io-parser/build/cjs/contrib/base64-arraybuffer.d.ts: -------------------------------------------------------------------------------- 1 | export declare const encode: (arraybuffer: ArrayBuffer) => string; 2 | export declare const decode: (base64: string) => ArrayBuffer; 3 | -------------------------------------------------------------------------------- /node_modules/engine.io-parser/build/cjs/decodePacket.browser.d.ts: -------------------------------------------------------------------------------- 1 | import { Packet, BinaryType, RawData } from "./commons.js"; 2 | export declare const decodePacket: (encodedPacket: RawData, binaryType?: BinaryType) => Packet; 3 | -------------------------------------------------------------------------------- /node_modules/engine.io-parser/build/cjs/decodePacket.d.ts: -------------------------------------------------------------------------------- 1 | import { Packet, BinaryType, RawData } from "./commons.js"; 2 | export declare const decodePacket: (encodedPacket: RawData, binaryType?: BinaryType) => Packet; 3 | -------------------------------------------------------------------------------- /node_modules/engine.io-parser/build/cjs/encodePacket.browser.d.ts: -------------------------------------------------------------------------------- 1 | import { Packet, RawData } from "./commons.js"; 2 | declare const encodePacket: ({ type, data }: Packet, supportsBinary: boolean, callback: (encodedPacket: RawData) => void) => void; 3 | export declare function encodePacketToBinary(packet: Packet, callback: (encodedPacket: RawData) => void): void | Promise; 4 | export { encodePacket }; 5 | -------------------------------------------------------------------------------- /node_modules/engine.io-parser/build/cjs/encodePacket.d.ts: -------------------------------------------------------------------------------- 1 | import { Packet, RawData } from "./commons.js"; 2 | export declare const encodePacket: ({ type, data }: Packet, supportsBinary: boolean, callback: (encodedPacket: RawData) => void) => void; 3 | export declare function encodePacketToBinary(packet: Packet, callback: (encodedPacket: RawData) => void): void; 4 | -------------------------------------------------------------------------------- /node_modules/engine.io-parser/build/cjs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "engine.io-parser", 3 | "type": "commonjs", 4 | "browser": { 5 | "./encodePacket.js": "./encodePacket.browser.js", 6 | "./decodePacket.js": "./decodePacket.browser.js" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /node_modules/engine.io-parser/build/esm/contrib/base64-arraybuffer.d.ts: -------------------------------------------------------------------------------- 1 | export declare const encode: (arraybuffer: ArrayBuffer) => string; 2 | export declare const decode: (base64: string) => ArrayBuffer; 3 | -------------------------------------------------------------------------------- /node_modules/engine.io-parser/build/esm/decodePacket.browser.d.ts: -------------------------------------------------------------------------------- 1 | import { Packet, BinaryType, RawData } from "./commons.js"; 2 | export declare const decodePacket: (encodedPacket: RawData, binaryType?: BinaryType) => Packet; 3 | -------------------------------------------------------------------------------- /node_modules/engine.io-parser/build/esm/decodePacket.d.ts: -------------------------------------------------------------------------------- 1 | import { Packet, BinaryType, RawData } from "./commons.js"; 2 | export declare const decodePacket: (encodedPacket: RawData, binaryType?: BinaryType) => Packet; 3 | -------------------------------------------------------------------------------- /node_modules/engine.io-parser/build/esm/encodePacket.browser.d.ts: -------------------------------------------------------------------------------- 1 | import { Packet, RawData } from "./commons.js"; 2 | declare const encodePacket: ({ type, data }: Packet, supportsBinary: boolean, callback: (encodedPacket: RawData) => void) => void; 3 | export declare function encodePacketToBinary(packet: Packet, callback: (encodedPacket: RawData) => void): void | Promise; 4 | export { encodePacket }; 5 | -------------------------------------------------------------------------------- /node_modules/engine.io-parser/build/esm/encodePacket.d.ts: -------------------------------------------------------------------------------- 1 | import { Packet, RawData } from "./commons.js"; 2 | export declare const encodePacket: ({ type, data }: Packet, supportsBinary: boolean, callback: (encodedPacket: RawData) => void) => void; 3 | export declare function encodePacketToBinary(packet: Packet, callback: (encodedPacket: RawData) => void): void; 4 | -------------------------------------------------------------------------------- /node_modules/engine.io-parser/build/esm/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "engine.io-parser", 3 | "type": "module", 4 | "browser": { 5 | "./encodePacket.js": "./encodePacket.browser.js", 6 | "./decodePacket.js": "./decodePacket.browser.js" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /node_modules/engine.io/build/transports-uws/index.d.ts: -------------------------------------------------------------------------------- 1 | import { Polling } from "./polling"; 2 | import { WebSocket } from "./websocket"; 3 | declare const _default: { 4 | polling: typeof Polling; 5 | websocket: typeof WebSocket; 6 | }; 7 | export default _default; 8 | -------------------------------------------------------------------------------- /node_modules/engine.io/build/transports-uws/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | const polling_1 = require("./polling"); 4 | const websocket_1 = require("./websocket"); 5 | exports.default = { 6 | polling: polling_1.Polling, 7 | websocket: websocket_1.WebSocket, 8 | }; 9 | -------------------------------------------------------------------------------- /node_modules/engine.io/wrapper.mjs: -------------------------------------------------------------------------------- 1 | export { 2 | Server, 3 | Socket, 4 | Transport, 5 | transports, 6 | listen, 7 | attach, 8 | parser, 9 | protocol, 10 | } from "./build/engine.io.js"; 11 | -------------------------------------------------------------------------------- /node_modules/express/index.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * express 3 | * Copyright(c) 2009-2013 TJ Holowaychuk 4 | * Copyright(c) 2013 Roman Shtylman 5 | * Copyright(c) 2014-2015 Douglas Christopher Wilson 6 | * MIT Licensed 7 | */ 8 | 9 | 'use strict'; 10 | 11 | module.exports = require('./lib/express'); 12 | -------------------------------------------------------------------------------- /node_modules/filelist/jakefile.js: -------------------------------------------------------------------------------- 1 | testTask('FileList', function () { 2 | this.testFiles.include('test/*.js'); 3 | }); 4 | 5 | publishTask('FileList', function () { 6 | this.packageFiles.include([ 7 | 'jakefile.js', 8 | 'README.md', 9 | 'package.json', 10 | 'index.js', 11 | 'index.d.ts' 12 | ]); 13 | }); 14 | 15 | 16 | -------------------------------------------------------------------------------- /node_modules/filelist/node_modules/brace-expansion/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | tidelift: "npm/brace-expansion" 2 | patreon: juliangruber 3 | -------------------------------------------------------------------------------- /node_modules/filelist/node_modules/minimatch/lib/path.js: -------------------------------------------------------------------------------- 1 | const isWindows = typeof process === 'object' && 2 | process && 3 | process.platform === 'win32' 4 | module.exports = isWindows ? { sep: '\\' } : { sep: '/' } 5 | -------------------------------------------------------------------------------- /node_modules/function-bind/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | 4 | "extends": "@ljharb", 5 | 6 | "rules": { 7 | "func-name-matching": 0, 8 | "indent": [2, 4], 9 | "max-nested-callbacks": [2, 3], 10 | "max-params": [2, 3], 11 | "max-statements": [2, 20], 12 | "no-new-func": [1], 13 | "strict": [0] 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /node_modules/function-bind/.npmignore: -------------------------------------------------------------------------------- 1 | # gitignore 2 | .DS_Store 3 | .monitor 4 | .*.swp 5 | .nodemonignore 6 | releases 7 | *.log 8 | *.err 9 | fleet.json 10 | public/browserify 11 | bin/*.json 12 | .bin 13 | build 14 | compile 15 | .lock-wscript 16 | coverage 17 | node_modules 18 | 19 | # Only apps should have lockfiles 20 | npm-shrinkwrap.json 21 | package-lock.json 22 | yarn.lock 23 | -------------------------------------------------------------------------------- /node_modules/function-bind/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var implementation = require('./implementation'); 4 | 5 | module.exports = Function.prototype.bind || implementation; 6 | -------------------------------------------------------------------------------- /node_modules/function-bind/test/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "rules": { 3 | "array-bracket-newline": 0, 4 | "array-element-newline": 0, 5 | "max-statements-per-line": [2, { "max": 2 }], 6 | "no-invalid-this": 0, 7 | "no-magic-numbers": 0, 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /node_modules/generic-pool/lib/utils.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | function noop() {} 4 | 5 | /** 6 | * Reflects a promise but does not expose any 7 | * underlying value or rejection from that promise. 8 | * @param {Promise} promise [description] 9 | * @return {Promise} [description] 10 | */ 11 | exports.reflector = function(promise) { 12 | return promise.then(noop, noop); 13 | }; 14 | -------------------------------------------------------------------------------- /node_modules/get-intrinsic/.nycrc: -------------------------------------------------------------------------------- 1 | { 2 | "all": true, 3 | "check-coverage": false, 4 | "reporter": ["text-summary", "text", "html", "json"], 5 | "exclude": [ 6 | "coverage", 7 | "test" 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /node_modules/has-flag/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = (flag, argv = process.argv) => { 4 | const prefix = flag.startsWith('-') ? '' : (flag.length === 1 ? '-' : '--'); 5 | const position = argv.indexOf(prefix + flag); 6 | const terminatorPosition = argv.indexOf('--'); 7 | return position !== -1 && (terminatorPosition === -1 || position < terminatorPosition); 8 | }; 9 | -------------------------------------------------------------------------------- /node_modules/has-proto/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | 4 | "extends": "@ljharb", 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/has-proto/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var test = { 4 | foo: {} 5 | }; 6 | 7 | var $Object = Object; 8 | 9 | module.exports = function hasProto() { 10 | return { __proto__: test }.foo === test.foo && !({ __proto__: null } instanceof $Object); 11 | }; 12 | -------------------------------------------------------------------------------- /node_modules/has-symbols/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | 4 | "extends": "@ljharb", 5 | 6 | "rules": { 7 | "max-statements-per-line": [2, { "max": 2 }], 8 | "no-magic-numbers": 0, 9 | "multiline-comment-style": 0, 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /node_modules/has-symbols/.nycrc: -------------------------------------------------------------------------------- 1 | { 2 | "all": true, 3 | "check-coverage": false, 4 | "reporter": ["text-summary", "text", "html", "json"], 5 | "exclude": [ 6 | "coverage", 7 | "test" 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /node_modules/has/README.md: -------------------------------------------------------------------------------- 1 | # has 2 | 3 | > Object.prototype.hasOwnProperty.call shortcut 4 | 5 | ## Installation 6 | 7 | ```sh 8 | npm install --save has 9 | ``` 10 | 11 | ## Usage 12 | 13 | ```js 14 | var has = require('has'); 15 | 16 | has({}, 'hasOwnProperty'); // false 17 | has(Object.prototype, 'hasOwnProperty'); // true 18 | ``` 19 | -------------------------------------------------------------------------------- /node_modules/has/src/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var bind = require('function-bind'); 4 | 5 | module.exports = bind.call(Function.call, Object.prototype.hasOwnProperty); 6 | -------------------------------------------------------------------------------- /node_modules/has/test/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var test = require('tape'); 4 | var has = require('../'); 5 | 6 | test('has', function (t) { 7 | t.equal(has({}, 'hasOwnProperty'), false, 'object literal does not have own property "hasOwnProperty"'); 8 | t.equal(has(Object.prototype, 'hasOwnProperty'), true, 'Object.prototype has own property "hasOwnProperty"'); 9 | t.end(); 10 | }); 11 | -------------------------------------------------------------------------------- /node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- 1 | try { 2 | var util = require('util'); 3 | /* istanbul ignore next */ 4 | if (typeof util.inherits !== 'function') throw ''; 5 | module.exports = util.inherits; 6 | } catch (e) { 7 | /* istanbul ignore next */ 8 | module.exports = require('./inherits_browser.js'); 9 | } 10 | -------------------------------------------------------------------------------- /node_modules/jake/lib/task/index.js: -------------------------------------------------------------------------------- 1 | 2 | let Task = require('./task').Task; 3 | let FileTask = require('./file_task').FileTask; 4 | let DirectoryTask = require('./directory_task').DirectoryTask; 5 | 6 | exports.Task = Task; 7 | exports.FileTask = FileTask; 8 | exports.DirectoryTask = DirectoryTask; 9 | 10 | -------------------------------------------------------------------------------- /node_modules/jake/test/integration/jakelib/required_module.jake.js: -------------------------------------------------------------------------------- 1 | let { task, namespace } = require(`${process.env.PROJECT_DIR}/lib/jake`); 2 | 3 | namespace('usingRequire', function () { 4 | task('test', () => { 5 | console.log('howdy test'); 6 | }); 7 | }); 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /node_modules/jsonpath-plus/.babelrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | ["@babel/preset-env"] 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/jsonpath-plus/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | docs/ts 4 | coverage 5 | ignore 6 | !*.js 7 | -------------------------------------------------------------------------------- /node_modules/jsonpath-plus/demo/index.css: -------------------------------------------------------------------------------- 1 | #jsonpath { 2 | width: 90%; 3 | margin-bottom: 10px; 4 | } 5 | 6 | .container { 7 | float: left; 8 | width: 48%; 9 | } 10 | 11 | .container textarea { 12 | margin: 2%; 13 | width: 98%; 14 | height: 565px; 15 | } 16 | 17 | #demoNode { 18 | font-size: small; 19 | } 20 | -------------------------------------------------------------------------------- /node_modules/jsonpath-plus/licenseInfo.json: -------------------------------------------------------------------------------- 1 | { 2 | "bundledRootPackages": [], 3 | "filesByLicense": {} 4 | } 5 | -------------------------------------------------------------------------------- /node_modules/jsonpath-plus/src/jsonpath-node.js: -------------------------------------------------------------------------------- 1 | import vm from 'vm'; 2 | import {JSONPath} from './jsonpath.js'; 3 | 4 | JSONPath.prototype.vm = vm; 5 | 6 | export {JSONPath}; 7 | -------------------------------------------------------------------------------- /node_modules/jsonpath-plus/src/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "lib": ["es2015"] 4 | }, 5 | "exclude": ["node_modules"] 6 | } 7 | -------------------------------------------------------------------------------- /node_modules/just-clone/index.d.ts: -------------------------------------------------------------------------------- 1 | // Definitions by: Chris Howard 2 | declare function clone(obj: T): T; 3 | export default clone; 4 | -------------------------------------------------------------------------------- /node_modules/just-clone/rollup.config.js: -------------------------------------------------------------------------------- 1 | const createRollupConfig = require('../../config/createRollupConfig'); 2 | 3 | module.exports = createRollupConfig(__dirname); 4 | -------------------------------------------------------------------------------- /node_modules/mime-db/index.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * mime-db 3 | * Copyright(c) 2014 Jonathan Ong 4 | * Copyright(c) 2015-2022 Douglas Christopher Wilson 5 | * MIT Licensed 6 | */ 7 | 8 | /** 9 | * Module exports. 10 | */ 11 | 12 | module.exports = require('./db.json') 13 | -------------------------------------------------------------------------------- /node_modules/mime/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadrax4/redis-socketIO/083f65d50c05d30de810f6b21cbe5d2c361aaa5f/node_modules/mime/.npmignore -------------------------------------------------------------------------------- /node_modules/mime/cli.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var mime = require('./mime.js'); 4 | var file = process.argv[2]; 5 | var type = mime.lookup(file); 6 | 7 | process.stdout.write(type + '\n'); 8 | 9 | -------------------------------------------------------------------------------- /node_modules/object-inspect/.nycrc: -------------------------------------------------------------------------------- 1 | { 2 | "all": true, 3 | "check-coverage": false, 4 | "instrumentation": false, 5 | "sourceMap": false, 6 | "reporter": ["text-summary", "text", "html", "json"], 7 | "exclude": [ 8 | "coverage", 9 | "example", 10 | "test", 11 | "test-core-js.js" 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /node_modules/object-inspect/example/circular.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var inspect = require('../'); 4 | var obj = { a: 1, b: [3, 4] }; 5 | obj.c = obj; 6 | console.log(inspect(obj)); 7 | -------------------------------------------------------------------------------- /node_modules/object-inspect/example/fn.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var inspect = require('../'); 4 | var obj = [1, 2, function f(n) { return n + 5; }, 4]; 5 | console.log(inspect(obj)); 6 | -------------------------------------------------------------------------------- /node_modules/object-inspect/example/inspect.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /* eslint-env browser */ 4 | var inspect = require('../'); 5 | 6 | var d = document.createElement('div'); 7 | d.setAttribute('id', 'beep'); 8 | d.innerHTML = 'woooiiiii'; 9 | 10 | console.log(inspect([d, { a: 3, b: 4, c: [5, 6, [7, [8, [9]]]] }])); 11 | -------------------------------------------------------------------------------- /node_modules/object-inspect/test/holes.js: -------------------------------------------------------------------------------- 1 | var test = require('tape'); 2 | var inspect = require('../'); 3 | 4 | var xs = ['a', 'b']; 5 | xs[5] = 'f'; 6 | xs[7] = 'j'; 7 | xs[8] = 'k'; 8 | 9 | test('holes', function (t) { 10 | t.plan(1); 11 | t.equal( 12 | inspect(xs), 13 | "[ 'a', 'b', , , , 'f', , 'j', 'k' ]" 14 | ); 15 | }); 16 | -------------------------------------------------------------------------------- /node_modules/object-inspect/test/lowbyte.js: -------------------------------------------------------------------------------- 1 | var test = require('tape'); 2 | var inspect = require('../'); 3 | 4 | var obj = { x: 'a\r\nb', y: '\x05! \x1f \x12' }; 5 | 6 | test('interpolate low bytes', function (t) { 7 | t.plan(1); 8 | t.equal( 9 | inspect(obj), 10 | "{ x: 'a\\r\\nb', y: '\\x05! \\x1F \\x12' }" 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /node_modules/object-inspect/test/undef.js: -------------------------------------------------------------------------------- 1 | var test = require('tape'); 2 | var inspect = require('../'); 3 | 4 | var obj = { a: 1, b: [3, 4, undefined, null], c: undefined, d: null }; 5 | 6 | test('undef and null', function (t) { 7 | t.plan(1); 8 | t.equal( 9 | inspect(obj), 10 | '{ a: 1, b: [ 3, 4, undefined, null ], c: undefined, d: null }' 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /node_modules/object-inspect/util.inspect.js: -------------------------------------------------------------------------------- 1 | module.exports = require('util').inspect; 2 | -------------------------------------------------------------------------------- /node_modules/qs/.nycrc: -------------------------------------------------------------------------------- 1 | { 2 | "all": true, 3 | "check-coverage": false, 4 | "reporter": ["text-summary", "text", "html", "json"], 5 | "lines": 86, 6 | "statements": 85.93, 7 | "functions": 82.43, 8 | "branches": 76.06, 9 | "exclude": [ 10 | "coverage", 11 | "dist" 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /node_modules/qs/lib/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var stringify = require('./stringify'); 4 | var parse = require('./parse'); 5 | var formats = require('./formats'); 6 | 7 | module.exports = { 8 | formats: formats, 9 | parse: parse, 10 | stringify: stringify 11 | }; 12 | -------------------------------------------------------------------------------- /node_modules/redis-om/docs/.nojekyll: -------------------------------------------------------------------------------- 1 | TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false. -------------------------------------------------------------------------------- /node_modules/setprototypeof/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function setPrototypeOf(o: any, proto: object | null): any; 2 | export = setPrototypeOf; 3 | -------------------------------------------------------------------------------- /node_modules/side-channel/.eslintignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | -------------------------------------------------------------------------------- /node_modules/side-channel/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | 4 | "extends": "@ljharb", 5 | 6 | "rules": { 7 | "max-lines-per-function": 0, 8 | "max-params": 0, 9 | "new-cap": [2, { "capIsNewExceptions": ["GetIntrinsic"] }], 10 | }, 11 | } 12 | -------------------------------------------------------------------------------- /node_modules/side-channel/.nycrc: -------------------------------------------------------------------------------- 1 | { 2 | "all": true, 3 | "check-coverage": false, 4 | "reporter": ["text-summary", "text", "html", "json"], 5 | "lines": 86, 6 | "statements": 85.93, 7 | "functions": 82.43, 8 | "branches": 76.06, 9 | "exclude": [ 10 | "coverage", 11 | "test" 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /node_modules/side-channel/README.md: -------------------------------------------------------------------------------- 1 | # side-channel 2 | Store information about any JS value in a side channel. Uses WeakMap if available. 3 | -------------------------------------------------------------------------------- /node_modules/socket.io-parser/build/cjs/is-binary.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Returns true if obj is a Buffer, an ArrayBuffer, a Blob or a File. 3 | * 4 | * @private 5 | */ 6 | export declare function isBinary(obj: any): boolean; 7 | export declare function hasBinary(obj: any, toJSON?: boolean): any; 8 | -------------------------------------------------------------------------------- /node_modules/socket.io-parser/build/cjs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "commonjs" 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/socket.io-parser/build/esm-debug/is-binary.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Returns true if obj is a Buffer, an ArrayBuffer, a Blob or a File. 3 | * 4 | * @private 5 | */ 6 | export declare function isBinary(obj: any): boolean; 7 | export declare function hasBinary(obj: any, toJSON?: boolean): any; 8 | -------------------------------------------------------------------------------- /node_modules/socket.io-parser/build/esm-debug/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/socket.io-parser/build/esm/is-binary.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Returns true if obj is a Buffer, an ArrayBuffer, a Blob or a File. 3 | * 4 | * @private 5 | */ 6 | export declare function isBinary(obj: any): boolean; 7 | export declare function hasBinary(obj: any, toJSON?: boolean): any; 8 | -------------------------------------------------------------------------------- /node_modules/socket.io-parser/build/esm/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/socket.io/dist/uws.d.ts: -------------------------------------------------------------------------------- 1 | export declare function patchAdapter(app: any): void; 2 | export declare function restoreAdapter(): void; 3 | export declare function serveFile(res: any, filepath: string): void; 4 | -------------------------------------------------------------------------------- /node_modules/socket.io/wrapper.mjs: -------------------------------------------------------------------------------- 1 | import io from "./dist/index.js"; 2 | 3 | export const {Server, Namespace, Socket} = io; 4 | -------------------------------------------------------------------------------- /node_modules/supports-color/browser.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = { 3 | stdout: false, 4 | stderr: false 5 | }; 6 | -------------------------------------------------------------------------------- /node_modules/toidentifier/HISTORY.md: -------------------------------------------------------------------------------- 1 | 1.0.1 / 2021-11-14 2 | ================== 3 | 4 | * pref: enable strict mode 5 | 6 | 1.0.0 / 2018-07-09 7 | ================== 8 | 9 | * Initial release 10 | -------------------------------------------------------------------------------- /node_modules/ulid/bin/cli.js: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env node 2 | 3 | var ULID = require('../dist/index.umd.js') 4 | process.stdout.write(ULID.ulid()) 5 | -------------------------------------------------------------------------------- /node_modules/ulid/stubs/crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadrax4/redis-socketIO/083f65d50c05d30de810f6b21cbe5d2c361aaa5f/node_modules/ulid/stubs/crypto.js -------------------------------------------------------------------------------- /node_modules/unpipe/HISTORY.md: -------------------------------------------------------------------------------- 1 | 1.0.0 / 2015-06-14 2 | ================== 3 | 4 | * Initial release 5 | -------------------------------------------------------------------------------- /node_modules/utils-merge/.npmignore: -------------------------------------------------------------------------------- 1 | CONTRIBUTING.md 2 | Makefile 3 | docs/ 4 | examples/ 5 | reports/ 6 | test/ 7 | 8 | .jshintrc 9 | .travis.yml 10 | -------------------------------------------------------------------------------- /node_modules/ws/browser.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function () { 4 | throw new Error( 5 | 'ws does not work in the browser. Browser clients must use the native ' + 6 | 'WebSocket object' 7 | ); 8 | }; 9 | -------------------------------------------------------------------------------- /node_modules/ws/wrapper.mjs: -------------------------------------------------------------------------------- 1 | import createWebSocketStream from './lib/stream.js'; 2 | import Receiver from './lib/receiver.js'; 3 | import Sender from './lib/sender.js'; 4 | import WebSocket from './lib/websocket.js'; 5 | import WebSocketServer from './lib/websocket-server.js'; 6 | 7 | export { createWebSocketStream, Receiver, Sender, WebSocket, WebSocketServer }; 8 | export default WebSocket; 9 | -------------------------------------------------------------------------------- /node_modules/yallist/iterator.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = function (Yallist) { 3 | Yallist.prototype[Symbol.iterator] = function* () { 4 | for (let walker = this.head; walker; walker = walker.next) { 5 | yield walker.value 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /repository.js: -------------------------------------------------------------------------------- 1 | import { Schema, Repository } from 'redis-om' 2 | import { redis } from './initRedis.js' 3 | 4 | const schema = new Schema('person', { 5 | username: { type: 'string' }, 6 | message: { type: 'string' } 7 | }) 8 | 9 | export const personRepository = new Repository(schema, redis) 10 | 11 | await personRepository.createIndex() --------------------------------------------------------------------------------