@@ -24,13 +24,26 @@ import * as CLIENT_SETNAME from '../commands/CLIENT_SETNAME';
24
24
import * as CLIENT_INFO from '../commands/CLIENT_INFO' ;
25
25
import * as CLUSTER_ADDSLOTS from '../commands/CLUSTER_ADDSLOTS' ;
26
26
import * as CLUSTER_ADDSLOTSRANGE from '../commands/CLUSTER_ADDSLOTSRANGE' ;
27
+ import * as CLUSTER_BUMPEPOCH from '../commands/CLUSTER_BUMPEPOCH' ;
28
+ import * as CLUSTER_COUNT_FAILURE_REPORTS from '../commands/CLUSTER_COUNT-FAILURE-REPORTS' ;
29
+ import * as CLUSTER_COUNTKEYSINSLOT from '../commands/CLUSTER_COUNTKEYSINSLOT' ;
30
+ import * as CLUSTER_DELSLOTS from '../commands/CLUSTER_DELSLOTS' ;
27
31
import * as CLUSTER_DELSLOTSRANGE from '../commands/CLUSTER_DELSLOTSRANGE' ;
32
+ import * as CLUSTER_FAILOVER from '../commands/CLUSTER_FAILOVER' ;
28
33
import * as CLUSTER_FLUSHSLOTS from '../commands/CLUSTER_FLUSHSLOTS' ;
34
+ import * as CLUSTER_FORGET from '../commands/CLUSTER_FORGET' ;
35
+ import * as CLUSTER_GETKEYSINSLOT from '../commands/CLUSTER_GETKEYSINSLOT' ;
29
36
import * as CLUSTER_INFO from '../commands/CLUSTER_INFO' ;
37
+ import * as CLUSTER_KEYSLOT from '../commands/CLUSTER_KEYSLOT' ;
30
38
import * as CLUSTER_LINKS from '../commands/CLUSTER_LINKS' ;
31
- import * as CLUSTER_NODES from '../commands/CLUSTER_NODES' ;
32
39
import * as CLUSTER_MEET from '../commands/CLUSTER_MEET' ;
40
+ import * as CLUSTER_MYID from '../commands/CLUSTER_MYID' ;
41
+ import * as CLUSTER_NODES from '../commands/CLUSTER_NODES' ;
42
+ import * as CLUSTER_REPLICAS from '../commands/CLUSTER_REPLICAS' ;
43
+ import * as CLUSTER_REPLICATE from '../commands/CLUSTER_REPLICATE' ;
33
44
import * as CLUSTER_RESET from '../commands/CLUSTER_RESET' ;
45
+ import * as CLUSTER_SAVECONFIG from '../commands/CLUSTER_SAVECONFIG' ;
46
+ import * as CLUSTER_SET_CONFIG_EPOCH from '../commands/CLUSTER_SET-CONFIG-EPOCH' ;
34
47
import * as CLUSTER_SETSLOT from '../commands/CLUSTER_SETSLOT' ;
35
48
import * as CLUSTER_SLOTS from '../commands/CLUSTER_SLOTS' ;
36
49
import * as COMMAND_COUNT from '../commands/COMMAND_COUNT' ;
@@ -138,20 +151,46 @@ export default {
138
151
clusterAddSlots : CLUSTER_ADDSLOTS ,
139
152
CLUSTER_ADDSLOTSRANGE ,
140
153
clusterAddSlotsRange : CLUSTER_ADDSLOTSRANGE ,
154
+ CLUSTER_BUMPEPOCH ,
155
+ clusterBumpEpoch : CLUSTER_BUMPEPOCH ,
156
+ CLUSTER_COUNT_FAILURE_REPORTS ,
157
+ clusterCountFailureReports : CLUSTER_COUNT_FAILURE_REPORTS ,
158
+ CLUSTER_COUNTKEYSINSLOT ,
159
+ clusterCountKeysInSlot : CLUSTER_COUNTKEYSINSLOT ,
160
+ CLUSTER_DELSLOTS ,
161
+ clusterDelSlots : CLUSTER_DELSLOTS ,
141
162
CLUSTER_DELSLOTSRANGE ,
142
163
clusterDelSlotsRange : CLUSTER_DELSLOTSRANGE ,
164
+ CLUSTER_FAILOVER ,
165
+ clusterFailover : CLUSTER_FAILOVER ,
143
166
CLUSTER_FLUSHSLOTS ,
144
167
clusterFlushSlots : CLUSTER_FLUSHSLOTS ,
168
+ CLUSTER_FORGET ,
169
+ clusterForget : CLUSTER_FORGET ,
170
+ CLUSTER_GETKEYSINSLOT ,
171
+ clusterGetKeysInSlot : CLUSTER_GETKEYSINSLOT ,
145
172
CLUSTER_INFO ,
146
173
clusterInfo : CLUSTER_INFO ,
174
+ CLUSTER_KEYSLOT ,
175
+ clusterKeySlot : CLUSTER_KEYSLOT ,
147
176
CLUSTER_LINKS ,
148
177
clusterLinks : CLUSTER_LINKS ,
149
- CLUSTER_NODES ,
150
- clusterNodes : CLUSTER_NODES ,
151
178
CLUSTER_MEET ,
152
179
clusterMeet : CLUSTER_MEET ,
180
+ CLUSTER_MYID ,
181
+ clusterMyId : CLUSTER_MYID ,
182
+ CLUSTER_NODES ,
183
+ clusterNodes : CLUSTER_NODES ,
184
+ CLUSTER_REPLICAS ,
185
+ clusterReplicas : CLUSTER_REPLICAS ,
186
+ CLUSTER_REPLICATE ,
187
+ clusterReplicate : CLUSTER_REPLICATE ,
153
188
CLUSTER_RESET ,
154
189
clusterReset : CLUSTER_RESET ,
190
+ CLUSTER_SAVECONFIG ,
191
+ clusterSaveConfig : CLUSTER_SAVECONFIG ,
192
+ CLUSTER_SET_CONFIG_EPOCH ,
193
+ clusterSetConfigEpoch : CLUSTER_SET_CONFIG_EPOCH ,
155
194
CLUSTER_SETSLOT ,
156
195
clusterSetSlot : CLUSTER_SETSLOT ,
157
196
CLUSTER_SLOTS ,
0 commit comments