@valkey/valkey-glide-darwin-arm64 1.2.0-rc9 → 1.2.1-rc0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (439) hide show
  1. package/build-ts/src/BaseClient.d.ts +94 -1
  2. package/build-ts/src/BaseClient.js +34 -8
  3. package/build-ts/src/BaseClient.js.map +1 -1
  4. package/build-ts/src/Commands.d.ts +12 -0
  5. package/build-ts/src/Commands.js.map +1 -1
  6. package/build-ts/src/GlideClient.d.ts +101 -3
  7. package/build-ts/src/GlideClient.js +53 -0
  8. package/build-ts/src/GlideClient.js.map +1 -1
  9. package/build-ts/src/GlideClusterClient.d.ts +287 -10
  10. package/build-ts/src/GlideClusterClient.js +58 -5
  11. package/build-ts/src/GlideClusterClient.js.map +1 -1
  12. package/build-ts/src/ProtobufMessage.js +46 -1
  13. package/build-ts/src/ProtobufMessage.js.map +1 -1
  14. package/node_modules/glide-rs/glide-rs.darwin-arm64.node +0 -0
  15. package/node_modules/glide-rs/index.d.ts +3 -1
  16. package/node_modules/glide-rs/index.js +6 -2
  17. package/npm/glide/index.ts +8 -13
  18. package/npm/glide/package.json +2 -3
  19. package/package.json +4 -3
  20. package/rust-client/node_modules/mingo/README.md +58 -53
  21. package/rust-client/node_modules/mingo/dist/cjs/aggregator.js +18 -20
  22. package/rust-client/node_modules/mingo/dist/cjs/core.js +179 -190
  23. package/rust-client/node_modules/mingo/dist/cjs/cursor.js +34 -34
  24. package/rust-client/node_modules/mingo/dist/cjs/index.js +11 -3
  25. package/rust-client/node_modules/mingo/dist/cjs/init/basic.js +4 -22
  26. package/rust-client/node_modules/mingo/dist/cjs/init/system.js +6 -6
  27. package/rust-client/node_modules/mingo/dist/cjs/lazy.js +58 -61
  28. package/rust-client/node_modules/mingo/dist/cjs/operators/_predicates.js +12 -25
  29. package/rust-client/node_modules/mingo/dist/cjs/operators/accumulator/_internal.js +2 -4
  30. package/rust-client/node_modules/mingo/dist/cjs/operators/accumulator/accumulator.js +1 -2
  31. package/rust-client/node_modules/mingo/dist/cjs/operators/accumulator/first.js +3 -1
  32. package/rust-client/node_modules/mingo/dist/cjs/operators/accumulator/last.js +4 -1
  33. package/rust-client/node_modules/mingo/dist/cjs/operators/accumulator/max.js +9 -6
  34. package/rust-client/node_modules/mingo/dist/cjs/operators/accumulator/mergeObjects.js +5 -1
  35. package/rust-client/node_modules/mingo/dist/cjs/operators/accumulator/min.js +9 -3
  36. package/rust-client/node_modules/mingo/dist/cjs/operators/accumulator/push.js +1 -2
  37. package/rust-client/node_modules/mingo/dist/cjs/operators/accumulator/sum.js +2 -4
  38. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/arithmetic/add.js +9 -10
  39. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/arithmetic/ceil.js +1 -2
  40. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/arithmetic/exp.js +1 -2
  41. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/arithmetic/floor.js +1 -2
  42. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/arithmetic/ln.js +1 -2
  43. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/arithmetic/log.js +1 -2
  44. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/arithmetic/log10.js +1 -2
  45. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/arithmetic/round.js +1 -2
  46. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/arithmetic/sqrt.js +1 -2
  47. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/arithmetic/subtract.js +5 -2
  48. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/arithmetic/trunc.js +1 -2
  49. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/array/arrayElemAt.js +2 -3
  50. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/array/arrayToObject.js +3 -4
  51. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/array/concatArrays.js +11 -5
  52. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/array/filter.js +1 -0
  53. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/array/first.js +8 -8
  54. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/array/firstN.js +2 -4
  55. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/array/in.js +1 -1
  56. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/array/indexOfArray.js +5 -10
  57. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/array/isArray.js +2 -3
  58. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/array/last.js +8 -8
  59. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/array/lastN.js +2 -4
  60. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/array/map.js +1 -0
  61. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/array/maxN.js +2 -4
  62. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/array/minN.js +2 -4
  63. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/array/reduce.js +1 -2
  64. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/array/reverseArray.js +1 -2
  65. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/array/sortArray.js +2 -4
  66. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/array/zip.js +4 -10
  67. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/bitwise/_internal.js +1 -2
  68. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/bitwise/bitNot.js +2 -4
  69. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/boolean/not.js +3 -5
  70. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/comparison/cmp.js +6 -5
  71. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/conditional/cond.js +1 -1
  72. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/conditional/ifNull.js +1 -1
  73. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/conditional/switch.js +1 -2
  74. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/date/_internal.js +157 -65
  75. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/date/dateAdd.js +1 -29
  76. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/date/dateDiff.js +32 -20
  77. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/date/dateFromParts.js +2 -4
  78. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/date/dateFromString.js +13 -9
  79. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/date/dateToString.js +2 -4
  80. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/date/dateTrunc.js +107 -0
  81. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/date/dayOfYear.js +1 -1
  82. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/date/index.js +2 -0
  83. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/date/isoWeekYear.js +1 -4
  84. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/date/week.js +1 -2
  85. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/misc/getField.js +1 -2
  86. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/object/mergeObjects.js +9 -2
  87. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/object/objectToArray.js +5 -1
  88. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/object/setField.js +11 -7
  89. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/set/setDifference.js +9 -1
  90. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/set/setEquals.js +17 -3
  91. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/set/setIntersection.js +2 -1
  92. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/set/setIsSubset.js +15 -1
  93. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/set/setUnion.js +4 -5
  94. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/string/_internal.js +4 -8
  95. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/string/concat.js +5 -2
  96. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/string/indexOfBytes.js +2 -4
  97. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/string/replaceAll.js +1 -2
  98. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/string/replaceOne.js +1 -2
  99. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/string/split.js +1 -2
  100. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/string/strcasecmp.js +1 -2
  101. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/string/substr.js +4 -14
  102. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/string/substrBytes.js +2 -4
  103. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/trignometry/atan2.js +2 -4
  104. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/trignometry/cosh.js +0 -1
  105. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/type/_internal.js +20 -10
  106. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/type/convert.js +3 -5
  107. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/type/toBool.js +2 -4
  108. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/type/toDate.js +3 -6
  109. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/type/toDouble.js +5 -10
  110. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/type/toInt.js +1 -4
  111. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/type/toLong.js +1 -4
  112. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/type/toString.js +11 -10
  113. package/rust-client/node_modules/mingo/dist/cjs/operators/expression/type/type.js +11 -14
  114. package/rust-client/node_modules/mingo/dist/cjs/operators/pipeline/addFields.js +1 -2
  115. package/rust-client/node_modules/mingo/dist/cjs/operators/pipeline/bucket.js +53 -53
  116. package/rust-client/node_modules/mingo/dist/cjs/operators/pipeline/bucketAuto.js +670 -65
  117. package/rust-client/node_modules/mingo/dist/cjs/operators/pipeline/count.js +2 -2
  118. package/rust-client/node_modules/mingo/dist/cjs/operators/pipeline/densify.js +196 -0
  119. package/rust-client/node_modules/mingo/dist/cjs/operators/pipeline/graphLookup.js +78 -0
  120. package/rust-client/node_modules/mingo/dist/cjs/operators/pipeline/group.js +6 -9
  121. package/rust-client/node_modules/mingo/dist/cjs/operators/pipeline/index.js +4 -0
  122. package/rust-client/node_modules/mingo/dist/cjs/operators/pipeline/limit.js +1 -3
  123. package/rust-client/node_modules/mingo/dist/cjs/operators/pipeline/lookup.js +47 -10
  124. package/rust-client/node_modules/mingo/dist/cjs/operators/pipeline/merge.js +7 -13
  125. package/rust-client/node_modules/mingo/dist/cjs/operators/pipeline/out.js +1 -1
  126. package/rust-client/node_modules/mingo/dist/cjs/operators/pipeline/project.js +19 -38
  127. package/rust-client/node_modules/mingo/dist/cjs/operators/pipeline/redact.js +3 -1
  128. package/rust-client/node_modules/mingo/dist/cjs/operators/pipeline/replaceWith.js +9 -2
  129. package/rust-client/node_modules/mingo/dist/cjs/operators/pipeline/sample.js +1 -2
  130. package/rust-client/node_modules/mingo/dist/cjs/operators/pipeline/setWindowFields.js +10 -20
  131. package/rust-client/node_modules/mingo/dist/cjs/operators/pipeline/skip.js +1 -1
  132. package/rust-client/node_modules/mingo/dist/cjs/operators/pipeline/sort.js +10 -19
  133. package/rust-client/node_modules/mingo/dist/cjs/operators/pipeline/sortByCount.js +5 -3
  134. package/rust-client/node_modules/mingo/dist/cjs/operators/pipeline/unionWith.js +1 -1
  135. package/rust-client/node_modules/mingo/dist/cjs/operators/pipeline/unset.js +1 -2
  136. package/rust-client/node_modules/mingo/dist/cjs/operators/pipeline/unwind.js +5 -9
  137. package/rust-client/node_modules/mingo/dist/cjs/operators/projection/elemMatch.js +2 -3
  138. package/rust-client/node_modules/mingo/dist/cjs/operators/projection/slice.js +2 -3
  139. package/rust-client/node_modules/mingo/dist/cjs/operators/query/bitwise/_internal.js +4 -4
  140. package/rust-client/node_modules/mingo/dist/cjs/operators/update/_internal.js +8 -14
  141. package/rust-client/node_modules/mingo/dist/cjs/operators/update/addToSet.js +1 -2
  142. package/rust-client/node_modules/mingo/dist/cjs/operators/update/bit.js +1 -2
  143. package/rust-client/node_modules/mingo/dist/cjs/operators/update/max.js +1 -2
  144. package/rust-client/node_modules/mingo/dist/cjs/operators/update/min.js +1 -2
  145. package/rust-client/node_modules/mingo/dist/cjs/operators/update/pop.js +1 -2
  146. package/rust-client/node_modules/mingo/dist/cjs/operators/update/pull.js +2 -4
  147. package/rust-client/node_modules/mingo/dist/cjs/operators/update/push.js +3 -9
  148. package/rust-client/node_modules/mingo/dist/cjs/operators/update/rename.js +1 -2
  149. package/rust-client/node_modules/mingo/dist/cjs/operators/update/set.js +1 -2
  150. package/rust-client/node_modules/mingo/dist/cjs/operators/update/unset.js +1 -2
  151. package/rust-client/node_modules/mingo/dist/cjs/operators/window/_internal.js +2 -3
  152. package/rust-client/node_modules/mingo/dist/cjs/operators/window/denseRank.js +8 -10
  153. package/rust-client/node_modules/mingo/dist/cjs/operators/window/derivative.js +4 -6
  154. package/rust-client/node_modules/mingo/dist/cjs/operators/window/documentNumber.js +1 -3
  155. package/rust-client/node_modules/mingo/dist/cjs/operators/window/expMovingAvg.js +4 -6
  156. package/rust-client/node_modules/mingo/dist/cjs/operators/window/integral.js +3 -4
  157. package/rust-client/node_modules/mingo/dist/cjs/operators/window/linearFill.js +4 -6
  158. package/rust-client/node_modules/mingo/dist/cjs/operators/window/locf.js +3 -4
  159. package/rust-client/node_modules/mingo/dist/cjs/operators/window/rank.js +8 -10
  160. package/rust-client/node_modules/mingo/dist/cjs/operators/window/shift.js +2 -2
  161. package/rust-client/node_modules/mingo/dist/cjs/query.js +20 -19
  162. package/rust-client/node_modules/mingo/dist/cjs/types.js +22 -0
  163. package/rust-client/node_modules/mingo/dist/cjs/updater.js +6 -5
  164. package/rust-client/node_modules/mingo/dist/cjs/util.js +265 -388
  165. package/rust-client/node_modules/mingo/dist/esm/aggregator.js +18 -21
  166. package/rust-client/node_modules/mingo/dist/esm/core.js +179 -192
  167. package/rust-client/node_modules/mingo/dist/esm/cursor.js +35 -35
  168. package/rust-client/node_modules/mingo/dist/esm/index.js +8 -2
  169. package/rust-client/node_modules/mingo/dist/esm/init/basic.js +5 -12
  170. package/rust-client/node_modules/mingo/dist/esm/init/system.js +7 -7
  171. package/rust-client/node_modules/mingo/dist/esm/lazy.js +58 -61
  172. package/rust-client/node_modules/mingo/dist/esm/operators/_predicates.js +14 -32
  173. package/rust-client/node_modules/mingo/dist/esm/operators/accumulator/_internal.js +2 -4
  174. package/rust-client/node_modules/mingo/dist/esm/operators/accumulator/accumulator.js +1 -2
  175. package/rust-client/node_modules/mingo/dist/esm/operators/accumulator/first.js +7 -2
  176. package/rust-client/node_modules/mingo/dist/esm/operators/accumulator/last.js +8 -2
  177. package/rust-client/node_modules/mingo/dist/esm/operators/accumulator/max.js +10 -7
  178. package/rust-client/node_modules/mingo/dist/esm/operators/accumulator/mergeObjects.js +5 -1
  179. package/rust-client/node_modules/mingo/dist/esm/operators/accumulator/min.js +10 -4
  180. package/rust-client/node_modules/mingo/dist/esm/operators/accumulator/push.js +1 -2
  181. package/rust-client/node_modules/mingo/dist/esm/operators/accumulator/sum.js +2 -4
  182. package/rust-client/node_modules/mingo/dist/esm/operators/expression/arithmetic/add.js +9 -10
  183. package/rust-client/node_modules/mingo/dist/esm/operators/expression/arithmetic/ceil.js +1 -2
  184. package/rust-client/node_modules/mingo/dist/esm/operators/expression/arithmetic/exp.js +1 -2
  185. package/rust-client/node_modules/mingo/dist/esm/operators/expression/arithmetic/floor.js +1 -2
  186. package/rust-client/node_modules/mingo/dist/esm/operators/expression/arithmetic/ln.js +1 -2
  187. package/rust-client/node_modules/mingo/dist/esm/operators/expression/arithmetic/log.js +1 -2
  188. package/rust-client/node_modules/mingo/dist/esm/operators/expression/arithmetic/log10.js +1 -2
  189. package/rust-client/node_modules/mingo/dist/esm/operators/expression/arithmetic/round.js +1 -2
  190. package/rust-client/node_modules/mingo/dist/esm/operators/expression/arithmetic/sqrt.js +1 -2
  191. package/rust-client/node_modules/mingo/dist/esm/operators/expression/arithmetic/subtract.js +5 -2
  192. package/rust-client/node_modules/mingo/dist/esm/operators/expression/arithmetic/trunc.js +1 -2
  193. package/rust-client/node_modules/mingo/dist/esm/operators/expression/array/arrayElemAt.js +3 -4
  194. package/rust-client/node_modules/mingo/dist/esm/operators/expression/array/arrayToObject.js +3 -4
  195. package/rust-client/node_modules/mingo/dist/esm/operators/expression/array/concatArrays.js +12 -6
  196. package/rust-client/node_modules/mingo/dist/esm/operators/expression/array/filter.js +2 -1
  197. package/rust-client/node_modules/mingo/dist/esm/operators/expression/array/first.js +10 -13
  198. package/rust-client/node_modules/mingo/dist/esm/operators/expression/array/firstN.js +2 -4
  199. package/rust-client/node_modules/mingo/dist/esm/operators/expression/array/in.js +1 -1
  200. package/rust-client/node_modules/mingo/dist/esm/operators/expression/array/indexOfArray.js +5 -10
  201. package/rust-client/node_modules/mingo/dist/esm/operators/expression/array/isArray.js +2 -3
  202. package/rust-client/node_modules/mingo/dist/esm/operators/expression/array/last.js +10 -13
  203. package/rust-client/node_modules/mingo/dist/esm/operators/expression/array/lastN.js +2 -4
  204. package/rust-client/node_modules/mingo/dist/esm/operators/expression/array/map.js +2 -1
  205. package/rust-client/node_modules/mingo/dist/esm/operators/expression/array/maxN.js +2 -4
  206. package/rust-client/node_modules/mingo/dist/esm/operators/expression/array/minN.js +2 -4
  207. package/rust-client/node_modules/mingo/dist/esm/operators/expression/array/reduce.js +1 -2
  208. package/rust-client/node_modules/mingo/dist/esm/operators/expression/array/reverseArray.js +1 -2
  209. package/rust-client/node_modules/mingo/dist/esm/operators/expression/array/sortArray.js +2 -4
  210. package/rust-client/node_modules/mingo/dist/esm/operators/expression/array/zip.js +4 -10
  211. package/rust-client/node_modules/mingo/dist/esm/operators/expression/bitwise/_internal.js +1 -2
  212. package/rust-client/node_modules/mingo/dist/esm/operators/expression/bitwise/bitNot.js +2 -4
  213. package/rust-client/node_modules/mingo/dist/esm/operators/expression/boolean/not.js +4 -6
  214. package/rust-client/node_modules/mingo/dist/esm/operators/expression/comparison/cmp.js +6 -5
  215. package/rust-client/node_modules/mingo/dist/esm/operators/expression/conditional/cond.js +2 -2
  216. package/rust-client/node_modules/mingo/dist/esm/operators/expression/conditional/ifNull.js +1 -1
  217. package/rust-client/node_modules/mingo/dist/esm/operators/expression/conditional/switch.js +1 -2
  218. package/rust-client/node_modules/mingo/dist/esm/operators/expression/date/_internal.js +140 -61
  219. package/rust-client/node_modules/mingo/dist/esm/operators/expression/date/dateAdd.js +2 -35
  220. package/rust-client/node_modules/mingo/dist/esm/operators/expression/date/dateDiff.js +43 -21
  221. package/rust-client/node_modules/mingo/dist/esm/operators/expression/date/dateFromParts.js +2 -4
  222. package/rust-client/node_modules/mingo/dist/esm/operators/expression/date/dateFromString.js +13 -11
  223. package/rust-client/node_modules/mingo/dist/esm/operators/expression/date/dateToString.js +2 -4
  224. package/rust-client/node_modules/mingo/dist/esm/operators/expression/date/dateTrunc.js +97 -0
  225. package/rust-client/node_modules/mingo/dist/esm/operators/expression/date/dayOfYear.js +2 -2
  226. package/rust-client/node_modules/mingo/dist/esm/operators/expression/date/index.js +1 -0
  227. package/rust-client/node_modules/mingo/dist/esm/operators/expression/date/isoWeekYear.js +2 -5
  228. package/rust-client/node_modules/mingo/dist/esm/operators/expression/date/week.js +1 -2
  229. package/rust-client/node_modules/mingo/dist/esm/operators/expression/misc/getField.js +1 -2
  230. package/rust-client/node_modules/mingo/dist/esm/operators/expression/object/mergeObjects.js +10 -3
  231. package/rust-client/node_modules/mingo/dist/esm/operators/expression/object/objectToArray.js +6 -2
  232. package/rust-client/node_modules/mingo/dist/esm/operators/expression/object/setField.js +11 -7
  233. package/rust-client/node_modules/mingo/dist/esm/operators/expression/set/setDifference.js +10 -2
  234. package/rust-client/node_modules/mingo/dist/esm/operators/expression/set/setEquals.js +18 -4
  235. package/rust-client/node_modules/mingo/dist/esm/operators/expression/set/setIntersection.js +3 -2
  236. package/rust-client/node_modules/mingo/dist/esm/operators/expression/set/setIsSubset.js +16 -2
  237. package/rust-client/node_modules/mingo/dist/esm/operators/expression/set/setUnion.js +5 -6
  238. package/rust-client/node_modules/mingo/dist/esm/operators/expression/string/_internal.js +4 -8
  239. package/rust-client/node_modules/mingo/dist/esm/operators/expression/string/concat.js +6 -3
  240. package/rust-client/node_modules/mingo/dist/esm/operators/expression/string/indexOfBytes.js +2 -4
  241. package/rust-client/node_modules/mingo/dist/esm/operators/expression/string/replaceAll.js +1 -2
  242. package/rust-client/node_modules/mingo/dist/esm/operators/expression/string/replaceOne.js +1 -2
  243. package/rust-client/node_modules/mingo/dist/esm/operators/expression/string/split.js +1 -2
  244. package/rust-client/node_modules/mingo/dist/esm/operators/expression/string/strcasecmp.js +1 -2
  245. package/rust-client/node_modules/mingo/dist/esm/operators/expression/string/substr.js +4 -14
  246. package/rust-client/node_modules/mingo/dist/esm/operators/expression/string/substrBytes.js +2 -4
  247. package/rust-client/node_modules/mingo/dist/esm/operators/expression/trignometry/atan2.js +2 -4
  248. package/rust-client/node_modules/mingo/dist/esm/operators/expression/trignometry/cosh.js +0 -1
  249. package/rust-client/node_modules/mingo/dist/esm/operators/expression/type/_internal.js +17 -11
  250. package/rust-client/node_modules/mingo/dist/esm/operators/expression/type/convert.js +3 -5
  251. package/rust-client/node_modules/mingo/dist/esm/operators/expression/type/toBool.js +2 -4
  252. package/rust-client/node_modules/mingo/dist/esm/operators/expression/type/toDate.js +4 -7
  253. package/rust-client/node_modules/mingo/dist/esm/operators/expression/type/toDouble.js +6 -11
  254. package/rust-client/node_modules/mingo/dist/esm/operators/expression/type/toInt.js +2 -5
  255. package/rust-client/node_modules/mingo/dist/esm/operators/expression/type/toLong.js +2 -5
  256. package/rust-client/node_modules/mingo/dist/esm/operators/expression/type/toString.js +12 -11
  257. package/rust-client/node_modules/mingo/dist/esm/operators/expression/type/type.js +12 -15
  258. package/rust-client/node_modules/mingo/dist/esm/operators/pipeline/addFields.js +1 -2
  259. package/rust-client/node_modules/mingo/dist/esm/operators/pipeline/bucket.js +54 -61
  260. package/rust-client/node_modules/mingo/dist/esm/operators/pipeline/bucketAuto.js +679 -66
  261. package/rust-client/node_modules/mingo/dist/esm/operators/pipeline/count.js +3 -3
  262. package/rust-client/node_modules/mingo/dist/esm/operators/pipeline/densify.js +183 -0
  263. package/rust-client/node_modules/mingo/dist/esm/operators/pipeline/graphLookup.js +55 -0
  264. package/rust-client/node_modules/mingo/dist/esm/operators/pipeline/group.js +6 -9
  265. package/rust-client/node_modules/mingo/dist/esm/operators/pipeline/index.js +2 -0
  266. package/rust-client/node_modules/mingo/dist/esm/operators/pipeline/limit.js +1 -3
  267. package/rust-client/node_modules/mingo/dist/esm/operators/pipeline/lookup.js +55 -11
  268. package/rust-client/node_modules/mingo/dist/esm/operators/pipeline/merge.js +9 -14
  269. package/rust-client/node_modules/mingo/dist/esm/operators/pipeline/out.js +2 -2
  270. package/rust-client/node_modules/mingo/dist/esm/operators/pipeline/project.js +21 -42
  271. package/rust-client/node_modules/mingo/dist/esm/operators/pipeline/redact.js +3 -1
  272. package/rust-client/node_modules/mingo/dist/esm/operators/pipeline/replaceWith.js +9 -2
  273. package/rust-client/node_modules/mingo/dist/esm/operators/pipeline/sample.js +1 -2
  274. package/rust-client/node_modules/mingo/dist/esm/operators/pipeline/setWindowFields.js +12 -23
  275. package/rust-client/node_modules/mingo/dist/esm/operators/pipeline/skip.js +1 -1
  276. package/rust-client/node_modules/mingo/dist/esm/operators/pipeline/sort.js +11 -20
  277. package/rust-client/node_modules/mingo/dist/esm/operators/pipeline/sortByCount.js +5 -3
  278. package/rust-client/node_modules/mingo/dist/esm/operators/pipeline/unionWith.js +2 -2
  279. package/rust-client/node_modules/mingo/dist/esm/operators/pipeline/unset.js +1 -2
  280. package/rust-client/node_modules/mingo/dist/esm/operators/pipeline/unwind.js +6 -9
  281. package/rust-client/node_modules/mingo/dist/esm/operators/projection/elemMatch.js +3 -4
  282. package/rust-client/node_modules/mingo/dist/esm/operators/projection/slice.js +2 -3
  283. package/rust-client/node_modules/mingo/dist/esm/operators/query/bitwise/_internal.js +4 -4
  284. package/rust-client/node_modules/mingo/dist/esm/operators/update/_internal.js +9 -14
  285. package/rust-client/node_modules/mingo/dist/esm/operators/update/addToSet.js +1 -2
  286. package/rust-client/node_modules/mingo/dist/esm/operators/update/bit.js +1 -2
  287. package/rust-client/node_modules/mingo/dist/esm/operators/update/max.js +1 -2
  288. package/rust-client/node_modules/mingo/dist/esm/operators/update/min.js +1 -2
  289. package/rust-client/node_modules/mingo/dist/esm/operators/update/pop.js +1 -2
  290. package/rust-client/node_modules/mingo/dist/esm/operators/update/pull.js +2 -4
  291. package/rust-client/node_modules/mingo/dist/esm/operators/update/push.js +3 -9
  292. package/rust-client/node_modules/mingo/dist/esm/operators/update/rename.js +1 -2
  293. package/rust-client/node_modules/mingo/dist/esm/operators/update/set.js +1 -2
  294. package/rust-client/node_modules/mingo/dist/esm/operators/update/unset.js +1 -2
  295. package/rust-client/node_modules/mingo/dist/esm/operators/window/_internal.js +2 -3
  296. package/rust-client/node_modules/mingo/dist/esm/operators/window/denseRank.js +8 -10
  297. package/rust-client/node_modules/mingo/dist/esm/operators/window/derivative.js +4 -6
  298. package/rust-client/node_modules/mingo/dist/esm/operators/window/documentNumber.js +1 -3
  299. package/rust-client/node_modules/mingo/dist/esm/operators/window/expMovingAvg.js +4 -6
  300. package/rust-client/node_modules/mingo/dist/esm/operators/window/integral.js +3 -4
  301. package/rust-client/node_modules/mingo/dist/esm/operators/window/linearFill.js +4 -6
  302. package/rust-client/node_modules/mingo/dist/esm/operators/window/locf.js +3 -4
  303. package/rust-client/node_modules/mingo/dist/esm/operators/window/rank.js +8 -10
  304. package/rust-client/node_modules/mingo/dist/esm/operators/window/shift.js +2 -2
  305. package/rust-client/node_modules/mingo/dist/esm/query.js +22 -32
  306. package/rust-client/node_modules/mingo/dist/esm/types.js +14 -0
  307. package/rust-client/node_modules/mingo/dist/esm/updater.js +5 -5
  308. package/rust-client/node_modules/mingo/dist/esm/util.js +263 -377
  309. package/rust-client/node_modules/mingo/dist/types/aggregator.d.ts +7 -9
  310. package/rust-client/node_modules/mingo/dist/types/core.d.ts +41 -52
  311. package/rust-client/node_modules/mingo/dist/types/cursor.d.ts +6 -12
  312. package/rust-client/node_modules/mingo/dist/types/index.d.ts +8 -4
  313. package/rust-client/node_modules/mingo/dist/types/init/basic.d.ts +1 -6
  314. package/rust-client/node_modules/mingo/dist/types/lazy.d.ts +19 -15
  315. package/rust-client/node_modules/mingo/dist/types/operators/_predicates.d.ts +20 -20
  316. package/rust-client/node_modules/mingo/dist/types/operators/accumulator/accumulator.d.ts +1 -1
  317. package/rust-client/node_modules/mingo/dist/types/operators/accumulator/addToSet.d.ts +1 -1
  318. package/rust-client/node_modules/mingo/dist/types/operators/accumulator/avg.d.ts +1 -1
  319. package/rust-client/node_modules/mingo/dist/types/operators/accumulator/bottom.d.ts +2 -2
  320. package/rust-client/node_modules/mingo/dist/types/operators/accumulator/bottomN.d.ts +4 -4
  321. package/rust-client/node_modules/mingo/dist/types/operators/accumulator/count.d.ts +1 -1
  322. package/rust-client/node_modules/mingo/dist/types/operators/accumulator/covariancePop.d.ts +1 -1
  323. package/rust-client/node_modules/mingo/dist/types/operators/accumulator/covarianceSamp.d.ts +1 -1
  324. package/rust-client/node_modules/mingo/dist/types/operators/accumulator/first.d.ts +2 -2
  325. package/rust-client/node_modules/mingo/dist/types/operators/accumulator/firstN.d.ts +1 -1
  326. package/rust-client/node_modules/mingo/dist/types/operators/accumulator/last.d.ts +4 -4
  327. package/rust-client/node_modules/mingo/dist/types/operators/accumulator/lastN.d.ts +1 -1
  328. package/rust-client/node_modules/mingo/dist/types/operators/accumulator/max.d.ts +4 -5
  329. package/rust-client/node_modules/mingo/dist/types/operators/accumulator/maxN.d.ts +1 -1
  330. package/rust-client/node_modules/mingo/dist/types/operators/accumulator/mergeObjects.d.ts +1 -1
  331. package/rust-client/node_modules/mingo/dist/types/operators/accumulator/min.d.ts +4 -5
  332. package/rust-client/node_modules/mingo/dist/types/operators/accumulator/minN.d.ts +1 -1
  333. package/rust-client/node_modules/mingo/dist/types/operators/accumulator/percentile.d.ts +1 -1
  334. package/rust-client/node_modules/mingo/dist/types/operators/accumulator/push.d.ts +4 -4
  335. package/rust-client/node_modules/mingo/dist/types/operators/accumulator/stdDevPop.d.ts +1 -1
  336. package/rust-client/node_modules/mingo/dist/types/operators/accumulator/stdDevSamp.d.ts +1 -1
  337. package/rust-client/node_modules/mingo/dist/types/operators/accumulator/sum.d.ts +5 -3
  338. package/rust-client/node_modules/mingo/dist/types/operators/accumulator/top.d.ts +2 -2
  339. package/rust-client/node_modules/mingo/dist/types/operators/accumulator/topN.d.ts +4 -4
  340. package/rust-client/node_modules/mingo/dist/types/operators/expression/arithmetic/add.d.ts +1 -1
  341. package/rust-client/node_modules/mingo/dist/types/operators/expression/arithmetic/multiply.d.ts +1 -1
  342. package/rust-client/node_modules/mingo/dist/types/operators/expression/arithmetic/pow.d.ts +1 -1
  343. package/rust-client/node_modules/mingo/dist/types/operators/expression/arithmetic/subtract.d.ts +1 -0
  344. package/rust-client/node_modules/mingo/dist/types/operators/expression/array/arrayElemAt.d.ts +1 -1
  345. package/rust-client/node_modules/mingo/dist/types/operators/expression/array/concatArrays.d.ts +3 -3
  346. package/rust-client/node_modules/mingo/dist/types/operators/expression/array/filter.d.ts +1 -1
  347. package/rust-client/node_modules/mingo/dist/types/operators/expression/array/first.d.ts +0 -4
  348. package/rust-client/node_modules/mingo/dist/types/operators/expression/array/firstN.d.ts +1 -1
  349. package/rust-client/node_modules/mingo/dist/types/operators/expression/array/in.d.ts +2 -2
  350. package/rust-client/node_modules/mingo/dist/types/operators/expression/array/indexOfArray.d.ts +1 -1
  351. package/rust-client/node_modules/mingo/dist/types/operators/expression/array/isArray.d.ts +1 -1
  352. package/rust-client/node_modules/mingo/dist/types/operators/expression/array/last.d.ts +0 -4
  353. package/rust-client/node_modules/mingo/dist/types/operators/expression/array/lastN.d.ts +1 -1
  354. package/rust-client/node_modules/mingo/dist/types/operators/expression/array/map.d.ts +1 -1
  355. package/rust-client/node_modules/mingo/dist/types/operators/expression/array/maxN.d.ts +1 -1
  356. package/rust-client/node_modules/mingo/dist/types/operators/expression/array/minN.d.ts +1 -1
  357. package/rust-client/node_modules/mingo/dist/types/operators/expression/array/range.d.ts +1 -1
  358. package/rust-client/node_modules/mingo/dist/types/operators/expression/array/reduce.d.ts +2 -2
  359. package/rust-client/node_modules/mingo/dist/types/operators/expression/array/reverseArray.d.ts +1 -1
  360. package/rust-client/node_modules/mingo/dist/types/operators/expression/array/slice.d.ts +1 -1
  361. package/rust-client/node_modules/mingo/dist/types/operators/expression/date/_internal.d.ts +31 -9
  362. package/rust-client/node_modules/mingo/dist/types/operators/expression/date/dateFromString.d.ts +2 -2
  363. package/rust-client/node_modules/mingo/dist/types/operators/expression/date/dateToParts.d.ts +2 -2
  364. package/rust-client/node_modules/mingo/dist/types/operators/expression/date/dateTrunc.d.ts +12 -0
  365. package/rust-client/node_modules/mingo/dist/types/operators/expression/date/index.d.ts +1 -0
  366. package/rust-client/node_modules/mingo/dist/types/operators/expression/misc/rand.d.ts +2 -2
  367. package/rust-client/node_modules/mingo/dist/types/operators/expression/object/mergeObjects.d.ts +2 -2
  368. package/rust-client/node_modules/mingo/dist/types/operators/expression/percentile.d.ts +1 -1
  369. package/rust-client/node_modules/mingo/dist/types/operators/expression/set/setIsSubset.d.ts +3 -1
  370. package/rust-client/node_modules/mingo/dist/types/operators/expression/string/_internal.d.ts +4 -4
  371. package/rust-client/node_modules/mingo/dist/types/operators/expression/string/indexOfBytes.d.ts +1 -1
  372. package/rust-client/node_modules/mingo/dist/types/operators/expression/string/replaceAll.d.ts +1 -1
  373. package/rust-client/node_modules/mingo/dist/types/operators/expression/string/replaceOne.d.ts +1 -1
  374. package/rust-client/node_modules/mingo/dist/types/operators/expression/string/split.d.ts +1 -1
  375. package/rust-client/node_modules/mingo/dist/types/operators/expression/string/strLenBytes.d.ts +1 -1
  376. package/rust-client/node_modules/mingo/dist/types/operators/expression/string/strLenCP.d.ts +1 -1
  377. package/rust-client/node_modules/mingo/dist/types/operators/expression/string/substrBytes.d.ts +2 -0
  378. package/rust-client/node_modules/mingo/dist/types/operators/expression/type/_internal.d.ts +6 -2
  379. package/rust-client/node_modules/mingo/dist/types/operators/pipeline/_internal.d.ts +4 -4
  380. package/rust-client/node_modules/mingo/dist/types/operators/pipeline/addFields.d.ts +8 -5
  381. package/rust-client/node_modules/mingo/dist/types/operators/pipeline/bucket.d.ts +8 -5
  382. package/rust-client/node_modules/mingo/dist/types/operators/pipeline/bucketAuto.d.ts +8 -7
  383. package/rust-client/node_modules/mingo/dist/types/operators/pipeline/count.d.ts +7 -5
  384. package/rust-client/node_modules/mingo/dist/types/operators/pipeline/densify.d.ts +12 -0
  385. package/rust-client/node_modules/mingo/dist/types/operators/pipeline/facet.d.ts +7 -1
  386. package/rust-client/node_modules/mingo/dist/types/operators/pipeline/fill.d.ts +6 -3
  387. package/rust-client/node_modules/mingo/dist/types/operators/pipeline/graphLookup.d.ts +13 -0
  388. package/rust-client/node_modules/mingo/dist/types/operators/pipeline/group.d.ts +4 -2
  389. package/rust-client/node_modules/mingo/dist/types/operators/pipeline/index.d.ts +2 -0
  390. package/rust-client/node_modules/mingo/dist/types/operators/pipeline/limit.d.ts +3 -1
  391. package/rust-client/node_modules/mingo/dist/types/operators/pipeline/lookup.d.ts +4 -2
  392. package/rust-client/node_modules/mingo/dist/types/operators/pipeline/match.d.ts +4 -3
  393. package/rust-client/node_modules/mingo/dist/types/operators/pipeline/merge.d.ts +3 -5
  394. package/rust-client/node_modules/mingo/dist/types/operators/pipeline/out.d.ts +5 -3
  395. package/rust-client/node_modules/mingo/dist/types/operators/pipeline/project.d.ts +4 -3
  396. package/rust-client/node_modules/mingo/dist/types/operators/pipeline/redact.d.ts +1 -1
  397. package/rust-client/node_modules/mingo/dist/types/operators/pipeline/replaceRoot.d.ts +5 -5
  398. package/rust-client/node_modules/mingo/dist/types/operators/pipeline/replaceWith.d.ts +8 -1
  399. package/rust-client/node_modules/mingo/dist/types/operators/pipeline/sample.d.ts +7 -5
  400. package/rust-client/node_modules/mingo/dist/types/operators/pipeline/setWindowFields.d.ts +7 -5
  401. package/rust-client/node_modules/mingo/dist/types/operators/pipeline/skip.d.ts +6 -4
  402. package/rust-client/node_modules/mingo/dist/types/operators/pipeline/sort.d.ts +5 -3
  403. package/rust-client/node_modules/mingo/dist/types/operators/pipeline/sortByCount.d.ts +5 -5
  404. package/rust-client/node_modules/mingo/dist/types/operators/pipeline/unionWith.d.ts +3 -1
  405. package/rust-client/node_modules/mingo/dist/types/operators/pipeline/unset.d.ts +2 -0
  406. package/rust-client/node_modules/mingo/dist/types/operators/pipeline/unwind.d.ts +5 -2
  407. package/rust-client/node_modules/mingo/dist/types/operators/query/evaluation/expr.d.ts +2 -2
  408. package/rust-client/node_modules/mingo/dist/types/operators/query/evaluation/jsonSchema.d.ts +2 -2
  409. package/rust-client/node_modules/mingo/dist/types/operators/query/evaluation/where.d.ts +2 -2
  410. package/rust-client/node_modules/mingo/dist/types/operators/update/_internal.d.ts +5 -5
  411. package/rust-client/node_modules/mingo/dist/types/operators/update/addToSet.d.ts +2 -2
  412. package/rust-client/node_modules/mingo/dist/types/operators/update/bit.d.ts +2 -2
  413. package/rust-client/node_modules/mingo/dist/types/operators/update/currentDate.d.ts +2 -2
  414. package/rust-client/node_modules/mingo/dist/types/operators/update/inc.d.ts +2 -2
  415. package/rust-client/node_modules/mingo/dist/types/operators/update/max.d.ts +2 -2
  416. package/rust-client/node_modules/mingo/dist/types/operators/update/min.d.ts +2 -2
  417. package/rust-client/node_modules/mingo/dist/types/operators/update/mul.d.ts +2 -2
  418. package/rust-client/node_modules/mingo/dist/types/operators/update/pop.d.ts +2 -2
  419. package/rust-client/node_modules/mingo/dist/types/operators/update/pull.d.ts +2 -2
  420. package/rust-client/node_modules/mingo/dist/types/operators/update/pullAll.d.ts +2 -2
  421. package/rust-client/node_modules/mingo/dist/types/operators/update/push.d.ts +2 -2
  422. package/rust-client/node_modules/mingo/dist/types/operators/update/rename.d.ts +2 -2
  423. package/rust-client/node_modules/mingo/dist/types/operators/update/set.d.ts +2 -2
  424. package/rust-client/node_modules/mingo/dist/types/operators/update/unset.d.ts +2 -2
  425. package/rust-client/node_modules/mingo/dist/types/operators/window/_internal.d.ts +5 -5
  426. package/rust-client/node_modules/mingo/dist/types/operators/window/denseRank.d.ts +2 -3
  427. package/rust-client/node_modules/mingo/dist/types/operators/window/derivative.d.ts +2 -3
  428. package/rust-client/node_modules/mingo/dist/types/operators/window/documentNumber.d.ts +2 -2
  429. package/rust-client/node_modules/mingo/dist/types/operators/window/expMovingAvg.d.ts +2 -2
  430. package/rust-client/node_modules/mingo/dist/types/operators/window/integral.d.ts +2 -2
  431. package/rust-client/node_modules/mingo/dist/types/operators/window/linearFill.d.ts +2 -2
  432. package/rust-client/node_modules/mingo/dist/types/operators/window/locf.d.ts +2 -2
  433. package/rust-client/node_modules/mingo/dist/types/operators/window/rank.d.ts +2 -2
  434. package/rust-client/node_modules/mingo/dist/types/operators/window/shift.d.ts +2 -2
  435. package/rust-client/node_modules/mingo/dist/types/query.d.ts +5 -7
  436. package/rust-client/node_modules/mingo/dist/types/types.d.ts +18 -15
  437. package/rust-client/node_modules/mingo/dist/types/updater.d.ts +9 -10
  438. package/rust-client/node_modules/mingo/dist/types/util.d.ts +102 -90
  439. package/rust-client/node_modules/mingo/package.json +1 -1
@@ -2,9 +2,8 @@
2
2
  * Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
3
3
  */
4
4
  import { ClusterScanCursor, Script } from "glide-rs";
5
- import * as net from "net";
6
- import { BaseClient, BaseClientConfiguration, DecoderOption, GlideReturnType, GlideString, PubSubMsg } from "./BaseClient";
7
- import { FlushMode, FunctionListOptions, FunctionListResponse, FunctionRestorePolicy, FunctionStatsSingleResponse, InfoOptions, LolwutOptions, ScanOptions } from "./Commands";
5
+ import { AdvancedBaseClientConfiguration, BaseClient, BaseClientConfiguration, DecoderOption, GlideReturnType, GlideString, PubSubMsg } from "./BaseClient";
6
+ import { FlushMode, FunctionListOptions, FunctionListResponse, FunctionRestorePolicy, FunctionStatsSingleResponse, InfoOptions, LolwutOptions, ClusterScanOptions } from "./Commands";
8
7
  import { ClusterTransaction } from "./Transaction";
9
8
  /** An extension to command option types with {@link Routes}. */
10
9
  export interface RouteOption {
@@ -58,6 +57,9 @@ export declare namespace GlideClusterClientConfiguration {
58
57
  */
59
58
  Sharded = 2
60
59
  }
60
+ /**
61
+ * Configuration for Pub/Sub subscriptions that the client will establish upon connection.
62
+ */
61
63
  interface PubSubSubscriptions {
62
64
  /**
63
65
  * Channels and patterns by modes.
@@ -73,6 +75,39 @@ export declare namespace GlideClusterClientConfiguration {
73
75
  context?: any;
74
76
  }
75
77
  }
78
+ /**
79
+ * Configuration options for creating a {@link GlideClusterClient | GlideClusterClient}.
80
+ *
81
+ * Extends {@link BaseClientConfiguration | BaseClientConfiguration} with properties specific to `GlideClusterClient`, such as periodic topology checks
82
+ * and Pub/Sub subscription settings.
83
+ *
84
+ * @remarks
85
+ * This configuration allows you to tailor the client's behavior when connecting to a Valkey GLIDE Cluster.
86
+ *
87
+ * - **Periodic Topology Checks**: Use `periodicChecks` to configure how the client performs periodic checks to detect changes in the cluster's topology.
88
+ * - `"enabledDefaultConfigs"`: Enables periodic checks with default configurations.
89
+ * - `"disabled"`: Disables periodic topology checks.
90
+ * - `{ duration_in_sec: number }`: Manually configure the interval for periodic checks.
91
+ * - **Pub/Sub Subscriptions**: Predefine Pub/Sub channels and patterns to subscribe to upon connection establishment.
92
+ * - Supports exact channels, patterns, and sharded channels (available since Valkey version 7.0).
93
+ *
94
+ * @example
95
+ * ```typescript
96
+ * const config: GlideClusterClientConfiguration = {
97
+ * periodicChecks: {
98
+ * duration_in_sec: 30, // Perform periodic checks every 30 seconds
99
+ * },
100
+ * pubsubSubscriptions: {
101
+ * channelsAndPatterns: {
102
+ * [GlideClusterClientConfiguration.PubSubChannelModes.Pattern]: new Set(['cluster.*']),
103
+ * },
104
+ * callback: (msg) => {
105
+ * console.log(`Received message on ${msg.channel}:`, msg.payload);
106
+ * },
107
+ * },
108
+ * };
109
+ * ```
110
+ */
76
111
  export type GlideClusterClientConfiguration = BaseClientConfiguration & {
77
112
  /**
78
113
  * Configure the periodic topology checks.
@@ -86,12 +121,59 @@ export type GlideClusterClientConfiguration = BaseClientConfiguration & {
86
121
  * Will be applied via SUBSCRIBE/PSUBSCRIBE/SSUBSCRIBE commands during connection establishment.
87
122
  */
88
123
  pubsubSubscriptions?: GlideClusterClientConfiguration.PubSubSubscriptions;
124
+ /**
125
+ * Advanced configuration settings for the client.
126
+ */
127
+ advancedConfiguration?: AdvancedGlideClusterClientConfiguration;
89
128
  };
129
+ /**
130
+ * Represents advanced configuration settings for creating a {@link GlideClusterClient | GlideClusterClient} used in {@link GlideClusterClientConfiguration | GlideClusterClientConfiguration}.
131
+ *
132
+ *
133
+ * @example
134
+ * ```typescript
135
+ * const config: AdvancedGlideClusterClientConfiguration = {
136
+ * connectionTimeout: 500, // Set the connection timeout to 500ms
137
+ * };
138
+ * ```
139
+ */
140
+ export type AdvancedGlideClusterClientConfiguration = AdvancedBaseClientConfiguration & {};
90
141
  /**
91
142
  * If the command's routing is to one node we will get T as a response type,
92
143
  * otherwise, we will get a dictionary of address: nodeResponse, address is of type string and nodeResponse is of type T.
93
144
  */
94
145
  export type ClusterResponse<T> = T | Record<string, T>;
146
+ /**
147
+ * Routing configuration for commands based on a specific slot ID in a Valkey cluster.
148
+ *
149
+ * @remarks
150
+ * This interface allows you to specify routing of a command to a node responsible for a particular slot ID in the cluster.
151
+ * Valkey clusters use hash slots to distribute data across multiple shards. There are 16,384 slots in total, and each shard
152
+ * manages a range of slots.
153
+ *
154
+ * - **Slot ID**: A number between 0 and 16383 representing a hash slot.
155
+ * - **Routing Type**:
156
+ * - `"primarySlotId"`: Routes the command to the primary node responsible for the specified slot ID.
157
+ * - `"replicaSlotId"`: Routes the command to a replica node responsible for the specified slot ID, overriding the `readFrom` configuration.
158
+ *
159
+ * @example
160
+ * ```typescript
161
+ * // Route command to the primary node responsible for slot ID 12345
162
+ * const routeBySlotId: SlotIdTypes = {
163
+ * type: "primarySlotId",
164
+ * id: 12345,
165
+ * };
166
+ *
167
+ * // Route command to a replica node responsible for slot ID 12345
168
+ * const routeToReplicaBySlotId: SlotIdTypes = {
169
+ * type: "replicaSlotId",
170
+ * id: 12345,
171
+ * };
172
+ *
173
+ * // Use the routing configuration when executing a command
174
+ * const result = await client.get("mykey", { route: routeBySlotId });
175
+ * ```
176
+ */
95
177
  export interface SlotIdTypes {
96
178
  /**
97
179
  * `replicaSlotId` overrides the `readFrom` configuration. If it's used the request
@@ -104,6 +186,36 @@ export interface SlotIdTypes {
104
186
  */
105
187
  id: number;
106
188
  }
189
+ /**
190
+ * Routing configuration for commands based on a key in a Valkey cluster.
191
+ *
192
+ * @remarks
193
+ * This interface allows you to specify routing of a command to a node responsible for the slot that a specific key hashes to.
194
+ * Valkey clusters use consistent hashing to map keys to hash slots, which are then managed by different shards in the cluster.
195
+ *
196
+ * - **Key**: The key whose hash slot will determine the routing of the command.
197
+ * - **Routing Type**:
198
+ * - `"primarySlotKey"`: Routes the command to the primary node responsible for the key's slot.
199
+ * - `"replicaSlotKey"`: Routes the command to a replica node responsible for the key's slot, overriding the `readFrom` configuration.
200
+ *
201
+ * @example
202
+ * ```typescript
203
+ * // Route command to the primary node responsible for the key's slot
204
+ * const routeByKey: SlotKeyTypes = {
205
+ * type: "primarySlotKey",
206
+ * key: "user:1001",
207
+ * };
208
+ *
209
+ * // Route command to a replica node responsible for the key's slot
210
+ * const routeToReplicaByKey: SlotKeyTypes = {
211
+ * type: "replicaSlotKey",
212
+ * key: "user:1001",
213
+ * };
214
+ *
215
+ * // Use the routing configuration when executing a command
216
+ * const result = await client.get("user:1001", { route: routeByKey });
217
+ * ```
218
+ */
107
219
  export interface SlotKeyTypes {
108
220
  /**
109
221
  * `replicaSlotKey` overrides the `readFrom` configuration. If it's used the request
@@ -115,6 +227,39 @@ export interface SlotKeyTypes {
115
227
  */
116
228
  key: string;
117
229
  }
230
+ /**
231
+ * Routing configuration to send a command to a specific node by its address and port.
232
+ *
233
+ * @remarks
234
+ * This interface allows you to specify routing of a command to a node in the Valkey cluster by providing its network address and port.
235
+ * It's useful when you need to direct a command to a particular node.
236
+ *
237
+ * - **Type**: Must be set to `"routeByAddress"` to indicate that the routing should be based on the provided address.
238
+ * - **Host**: The endpoint of the node.
239
+ * - If `port` is not provided, `host` should be in the format `${address}:${port}`, where `address` is the preferred endpoint as shown in the output of the `CLUSTER SLOTS` command.
240
+ * - If `port` is provided, `host` should be the address or hostname of the node without the port.
241
+ * - **Port**: (Optional) The port to access on the node.
242
+ * - If `port` is not provided, `host` is assumed to include the port number.
243
+ *
244
+ * @example
245
+ * ```typescript
246
+ * // Route command to a node at '192.168.1.10:6379'
247
+ * const routeByAddress: RouteByAddress = {
248
+ * type: "routeByAddress",
249
+ * host: "192.168.1.10",
250
+ * port: 6379,
251
+ * };
252
+ *
253
+ * // Alternatively, include the port in the host string
254
+ * const routeByAddressWithPortInHost: RouteByAddress = {
255
+ * type: "routeByAddress",
256
+ * host: "192.168.1.10:6379",
257
+ * };
258
+ *
259
+ * // Use the routing configuration when executing a command
260
+ * const result = await client.ping({ route: routeByAddress });
261
+ * ```
262
+ */
118
263
  export interface RouteByAddress {
119
264
  type: "routeByAddress";
120
265
  /**
@@ -126,6 +271,52 @@ export interface RouteByAddress {
126
271
  */
127
272
  port?: number;
128
273
  }
274
+ /**
275
+ * Defines the routing configuration for a command in a Valkey cluster.
276
+ *
277
+ * @remarks
278
+ * The `Routes` type allows you to specify how a command should be routed in a Valkey cluster.
279
+ * Commands can be routed to a single node or broadcast to multiple nodes depending on the routing strategy.
280
+ *
281
+ * **Routing Options**:
282
+ *
283
+ * - **Single Node Routing** (`SingleNodeRoute`):
284
+ * - **"randomNode"**: Route the command to a random node in the cluster.
285
+ * - **`SlotIdTypes`**: Route based on a specific slot ID.
286
+ * - **`SlotKeyTypes`**: Route based on the slot of a specific key.
287
+ * - **`RouteByAddress`**: Route to a specific node by its address and port.
288
+ * - **Broadcast Routing**:
289
+ * - **"allPrimaries"**: Route the command to all primary nodes in the cluster.
290
+ * - **"allNodes"**: Route the command to all nodes (both primaries and replicas) in the cluster.
291
+ *
292
+ * @example
293
+ * ```typescript
294
+ * // Route command to a random node
295
+ * const routeRandom: Routes = "randomNode";
296
+ *
297
+ * // Route command to all primary nodes
298
+ * const routeAllPrimaries: Routes = "allPrimaries";
299
+ *
300
+ * // Route command to all nodes
301
+ * const routeAllNodes: Routes = "allNodes";
302
+ *
303
+ * // Route command to a node by slot key
304
+ * const routeByKey: Routes = {
305
+ * type: "primarySlotKey",
306
+ * key: "myKey",
307
+ * };
308
+ *
309
+ * // Route command to a specific node by address
310
+ * const routeByAddress: Routes = {
311
+ * type: "routeByAddress",
312
+ * host: "192.168.1.10",
313
+ * port: 6379,
314
+ * };
315
+ *
316
+ * // Use the routing configuration when executing a command
317
+ * const result = await client.ping({ route: routeByAddress });
318
+ * ```
319
+ */
129
320
  export type Routes = SingleNodeRoute
130
321
  /**
131
322
  * Route request to all primary nodes.
@@ -135,6 +326,48 @@ export type Routes = SingleNodeRoute
135
326
  * Route request to all nodes.
136
327
  */
137
328
  | "allNodes";
329
+ /**
330
+ * Defines the routing configuration to a single node in the Valkey cluster.
331
+ *
332
+ * @remarks
333
+ * The `SingleNodeRoute` type allows you to specify routing of a command to a single node in the cluster.
334
+ * This can be based on various criteria such as a random node, a node responsible for a specific slot, or a node identified by its address.
335
+ *
336
+ * **Options**:
337
+ *
338
+ * - **"randomNode"**: Route the command to a random node in the cluster.
339
+ * - **`SlotIdTypes`**: Route to the node responsible for a specific slot ID.
340
+ * - **`SlotKeyTypes`**: Route to the node responsible for the slot of a specific key.
341
+ * - **`RouteByAddress`**: Route to a specific node by its address and port.
342
+ *
343
+ * @example
344
+ * ```typescript
345
+ * // Route to a random node
346
+ * const routeRandomNode: SingleNodeRoute = "randomNode";
347
+ *
348
+ * // Route based on slot ID
349
+ * const routeBySlotId: SingleNodeRoute = {
350
+ * type: "primarySlotId",
351
+ * id: 12345,
352
+ * };
353
+ *
354
+ * // Route based on key
355
+ * const routeByKey: SingleNodeRoute = {
356
+ * type: "primarySlotKey",
357
+ * key: "myKey",
358
+ * };
359
+ *
360
+ * // Route to a specific node by address
361
+ * const routeByAddress: SingleNodeRoute = {
362
+ * type: "routeByAddress",
363
+ * host: "192.168.1.10",
364
+ * port: 6379,
365
+ * };
366
+ *
367
+ * // Use the routing configuration when executing a command
368
+ * const result = await client.get("myKey", { route: routeByKey });
369
+ * ```
370
+ */
138
371
  export type SingleNodeRoute =
139
372
  /**
140
373
  * Route request to a random node.
@@ -154,8 +387,52 @@ export type SingleNodeRoute =
154
387
  * @see For full documentation refer to {@link https://github.com/valkey-io/valkey-glide/wiki/NodeJS-wrapper#cluster|Valkey Glide Wiki}.
155
388
  */
156
389
  export declare class GlideClusterClient extends BaseClient {
390
+ /**
391
+ * Creates a new `GlideClusterClient` instance and establishes connections to a Valkey GLIDE Cluster.
392
+ *
393
+ * @param options - The configuration options for the client, including cluster addresses, authentication credentials, TLS settings, periodic checks, and Pub/Sub subscriptions.
394
+ * @returns A promise that resolves to a connected `GlideClusterClient` instance.
395
+ *
396
+ * @remarks
397
+ * Use this static method to create and connect a `GlideClusterClient` to a Valkey GLIDE Cluster. The client will automatically handle connection establishment, including cluster topology discovery and handling of authentication and TLS configurations.
398
+ *
399
+ * ### Example - Connecting to a Cluster
400
+ * ```typescript
401
+ * import { GlideClusterClient, GlideClusterClientConfiguration } from '@valkey/valkey-glide';
402
+ *
403
+ * const client = await GlideClusterClient.createClient({
404
+ * addresses: [
405
+ * { host: 'address1.example.com', port: 6379 },
406
+ * { host: 'address2.example.com', port: 6379 },
407
+ * ],
408
+ * credentials: {
409
+ * username: 'user1',
410
+ * password: 'passwordA',
411
+ * },
412
+ * useTLS: true,
413
+ * periodicChecks: {
414
+ * duration_in_sec: 30, // Perform periodic checks every 30 seconds
415
+ * },
416
+ * pubsubSubscriptions: {
417
+ * channelsAndPatterns: {
418
+ * [GlideClusterClientConfiguration.PubSubChannelModes.Exact]: new Set(['updates']),
419
+ * [GlideClusterClientConfiguration.PubSubChannelModes.Sharded]: new Set(['sharded_channel']),
420
+ * },
421
+ * callback: (msg) => {
422
+ * console.log(`Received message: ${msg.payload}`);
423
+ * },
424
+ * },
425
+ * });
426
+ * ```
427
+ *
428
+ * @remarks
429
+ * - **Cluster Topology Discovery**: The client will automatically discover the cluster topology based on the seed addresses provided.
430
+ * - **Authentication**: If `credentials` are provided, the client will attempt to authenticate using the specified username and password.
431
+ * - **TLS**: If `useTLS` is set to `true`, the client will establish secure connections using TLS.
432
+ * - **Periodic Checks**: The `periodicChecks` setting allows you to configure how often the client checks for cluster topology changes.
433
+ * - **Pub/Sub Subscriptions**: Any channels or patterns specified in `pubsubSubscriptions` will be subscribed to upon connection.
434
+ */
157
435
  static createClient(options: GlideClusterClientConfiguration): Promise<GlideClusterClient>;
158
- static __createClient(options: BaseClientConfiguration, connectedSocket: net.Socket): Promise<GlideClusterClient>;
159
436
  /**
160
437
  * Incrementally iterates over the keys in the Cluster.
161
438
  *
@@ -176,7 +453,7 @@ export declare class GlideClusterClient extends BaseClient {
176
453
  *
177
454
  * @param cursor - The cursor object that wraps the scan state.
178
455
  * To start a new scan, create a new empty `ClusterScanCursor` using {@link ClusterScanCursor}.
179
- * @param options - (Optional) The scan options, see {@link ScanOptions} and {@link DecoderOption}.
456
+ * @param options - (Optional) The scan options, see {@link ClusterScanOptions} and {@link DecoderOption}.
180
457
  * @returns A Promise resolving to an array containing the next cursor and an array of keys,
181
458
  * formatted as [`ClusterScanCursor`, `string[]`].
182
459
  *
@@ -194,14 +471,14 @@ export declare class GlideClusterClient extends BaseClient {
194
471
  * console.log(allKeys); // ["key1", "key2", "key3"]
195
472
  *
196
473
  * // Iterate over keys matching a pattern
197
- * await client.mset([{key: "key1", value: "value1"}, {key: "key2", value: "value2"}, {key: "notMykey", value: "value3"}, {key: "somethingElse", value: "value4"}]);
474
+ * await client.mset([{key: "key1", value: "value1"}, {key: "key2", value: "value2"}, {key: "notMyKey", value: "value3"}, {key: "somethingElse", value: "value4"}]);
198
475
  * let cursor = new ClusterScanCursor();
199
476
  * const matchedKeys: GlideString[] = [];
200
477
  * while (!cursor.isFinished()) {
201
478
  * const [cursor, keys] = await client.scan(cursor, { match: "*key*", count: 10 });
202
479
  * matchedKeys.push(...keys);
203
480
  * }
204
- * console.log(matchedKeys); // ["key1", "key2", "notMykey"]
481
+ * console.log(matchedKeys); // ["key1", "key2", "notMyKey"]
205
482
  *
206
483
  * // Iterate over keys of a specific type
207
484
  * await client.mset([{key: "key1", value: "value1"}, {key: "key2", value: "value2"}, {key: "key3", value: "value3"}]);
@@ -215,7 +492,7 @@ export declare class GlideClusterClient extends BaseClient {
215
492
  * console.log(stringKeys); // ["key1", "key2", "key3"]
216
493
  * ```
217
494
  */
218
- scan(cursor: ClusterScanCursor, options?: ScanOptions & DecoderOption): Promise<[ClusterScanCursor, GlideString[]]>;
495
+ scan(cursor: ClusterScanCursor, options?: ClusterScanOptions & DecoderOption): Promise<[ClusterScanCursor, GlideString[]]>;
219
496
  /** Executes a single command, without checking inputs. Every part of the command, including subcommands,
220
497
  * should be added as a separate value in args.
221
498
  * The command will be routed automatically based on the passed command's default request policy, unless `route` is provided,
@@ -431,7 +708,7 @@ export declare class GlideClusterClient extends BaseClient {
431
708
  * @example
432
709
  * ```typescript
433
710
  * // Example usage of configSet method to set multiple configuration parameters
434
- * const result = await client.configSet({ timeout: "1000", maxmemory, "1GB" });
711
+ * const result = await client.configSet({ timeout: "1000", maxmemory: "1GB" });
435
712
  * console.log(result); // Output: 'OK'
436
713
  * ```
437
714
  */
@@ -982,7 +1259,7 @@ export declare class GlideClusterClient extends BaseClient {
982
1259
  * @example
983
1260
  * ```typescript
984
1261
  * const luaScript = new Script("return { ARGV[1] }");
985
- * const result = await invokeScript(luaScript, { args: ["bar"] });
1262
+ * const result = await client.invokeScript(luaScript, { args: ["bar"] });
986
1263
  * console.log(result); // Output: ['bar']
987
1264
  * ```
988
1265
  */
@@ -96,8 +96,56 @@ class GlideClusterClient extends BaseClient_1.BaseClient {
96
96
  }
97
97
  }
98
98
  this.configurePubsub(options, configuration);
99
+ if (options.advancedConfiguration) {
100
+ this.configureAdvancedConfigurationBase(options.advancedConfiguration, configuration);
101
+ }
99
102
  return configuration;
100
103
  }
104
+ /**
105
+ * Creates a new `GlideClusterClient` instance and establishes connections to a Valkey GLIDE Cluster.
106
+ *
107
+ * @param options - The configuration options for the client, including cluster addresses, authentication credentials, TLS settings, periodic checks, and Pub/Sub subscriptions.
108
+ * @returns A promise that resolves to a connected `GlideClusterClient` instance.
109
+ *
110
+ * @remarks
111
+ * Use this static method to create and connect a `GlideClusterClient` to a Valkey GLIDE Cluster. The client will automatically handle connection establishment, including cluster topology discovery and handling of authentication and TLS configurations.
112
+ *
113
+ * ### Example - Connecting to a Cluster
114
+ * ```typescript
115
+ * import { GlideClusterClient, GlideClusterClientConfiguration } from '@valkey/valkey-glide';
116
+ *
117
+ * const client = await GlideClusterClient.createClient({
118
+ * addresses: [
119
+ * { host: 'address1.example.com', port: 6379 },
120
+ * { host: 'address2.example.com', port: 6379 },
121
+ * ],
122
+ * credentials: {
123
+ * username: 'user1',
124
+ * password: 'passwordA',
125
+ * },
126
+ * useTLS: true,
127
+ * periodicChecks: {
128
+ * duration_in_sec: 30, // Perform periodic checks every 30 seconds
129
+ * },
130
+ * pubsubSubscriptions: {
131
+ * channelsAndPatterns: {
132
+ * [GlideClusterClientConfiguration.PubSubChannelModes.Exact]: new Set(['updates']),
133
+ * [GlideClusterClientConfiguration.PubSubChannelModes.Sharded]: new Set(['sharded_channel']),
134
+ * },
135
+ * callback: (msg) => {
136
+ * console.log(`Received message: ${msg.payload}`);
137
+ * },
138
+ * },
139
+ * });
140
+ * ```
141
+ *
142
+ * @remarks
143
+ * - **Cluster Topology Discovery**: The client will automatically discover the cluster topology based on the seed addresses provided.
144
+ * - **Authentication**: If `credentials` are provided, the client will attempt to authenticate using the specified username and password.
145
+ * - **TLS**: If `useTLS` is set to `true`, the client will establish secure connections using TLS.
146
+ * - **Periodic Checks**: The `periodicChecks` setting allows you to configure how often the client checks for cluster topology changes.
147
+ * - **Pub/Sub Subscriptions**: Any channels or patterns specified in `pubsubSubscriptions` will be subscribed to upon connection.
148
+ */
101
149
  static createClient(options) {
102
150
  const _super = Object.create(null, {
103
151
  createClientInternal: { get: () => super.createClientInternal }
@@ -106,6 +154,9 @@ class GlideClusterClient extends BaseClient_1.BaseClient {
106
154
  return yield _super.createClientInternal.call(this, options, (socket, options) => new GlideClusterClient(socket, options));
107
155
  });
108
156
  }
157
+ /**
158
+ * @internal
159
+ */
109
160
  static __createClient(options, connectedSocket) {
110
161
  const _super = Object.create(null, {
111
162
  __createClientInternal: { get: () => super.__createClientInternal }
@@ -118,6 +169,7 @@ class GlideClusterClient extends BaseClient_1.BaseClient {
118
169
  * @internal
119
170
  */
120
171
  scanOptionsToProto(cursor, options) {
172
+ var _a;
121
173
  const command = ProtobufMessage_1.command_request.ClusterScan.create();
122
174
  command.cursor = cursor;
123
175
  if (options === null || options === void 0 ? void 0 : options.match) {
@@ -129,6 +181,7 @@ class GlideClusterClient extends BaseClient_1.BaseClient {
129
181
  if (options === null || options === void 0 ? void 0 : options.type) {
130
182
  command.objectType = options.type;
131
183
  }
184
+ command.allowNonCoveredSlots = (_a = options === null || options === void 0 ? void 0 : options.allowNonCoveredSlots) !== null && _a !== void 0 ? _a : false;
132
185
  return command;
133
186
  }
134
187
  /**
@@ -161,7 +214,7 @@ class GlideClusterClient extends BaseClient_1.BaseClient {
161
214
  *
162
215
  * @param cursor - The cursor object that wraps the scan state.
163
216
  * To start a new scan, create a new empty `ClusterScanCursor` using {@link ClusterScanCursor}.
164
- * @param options - (Optional) The scan options, see {@link ScanOptions} and {@link DecoderOption}.
217
+ * @param options - (Optional) The scan options, see {@link ClusterScanOptions} and {@link DecoderOption}.
165
218
  * @returns A Promise resolving to an array containing the next cursor and an array of keys,
166
219
  * formatted as [`ClusterScanCursor`, `string[]`].
167
220
  *
@@ -179,14 +232,14 @@ class GlideClusterClient extends BaseClient_1.BaseClient {
179
232
  * console.log(allKeys); // ["key1", "key2", "key3"]
180
233
  *
181
234
  * // Iterate over keys matching a pattern
182
- * await client.mset([{key: "key1", value: "value1"}, {key: "key2", value: "value2"}, {key: "notMykey", value: "value3"}, {key: "somethingElse", value: "value4"}]);
235
+ * await client.mset([{key: "key1", value: "value1"}, {key: "key2", value: "value2"}, {key: "notMyKey", value: "value3"}, {key: "somethingElse", value: "value4"}]);
183
236
  * let cursor = new ClusterScanCursor();
184
237
  * const matchedKeys: GlideString[] = [];
185
238
  * while (!cursor.isFinished()) {
186
239
  * const [cursor, keys] = await client.scan(cursor, { match: "*key*", count: 10 });
187
240
  * matchedKeys.push(...keys);
188
241
  * }
189
- * console.log(matchedKeys); // ["key1", "key2", "notMykey"]
242
+ * console.log(matchedKeys); // ["key1", "key2", "notMyKey"]
190
243
  *
191
244
  * // Iterate over keys of a specific type
192
245
  * await client.mset([{key: "key1", value: "value1"}, {key: "key2", value: "value2"}, {key: "key3", value: "value3"}]);
@@ -454,7 +507,7 @@ class GlideClusterClient extends BaseClient_1.BaseClient {
454
507
  * @example
455
508
  * ```typescript
456
509
  * // Example usage of configSet method to set multiple configuration parameters
457
- * const result = await client.configSet({ timeout: "1000", maxmemory, "1GB" });
510
+ * const result = await client.configSet({ timeout: "1000", maxmemory: "1GB" });
458
511
  * console.log(result); // Output: 'OK'
459
512
  * ```
460
513
  */
@@ -1092,7 +1145,7 @@ class GlideClusterClient extends BaseClient_1.BaseClient {
1092
1145
  * @example
1093
1146
  * ```typescript
1094
1147
  * const luaScript = new Script("return { ARGV[1] }");
1095
- * const result = await invokeScript(luaScript, { args: ["bar"] });
1148
+ * const result = await client.invokeScript(luaScript, { args: ["bar"] });
1096
1149
  * console.log(result); // Output: ['bar']
1097
1150
  * ```
1098
1151
  */
@@ -1 +1 @@
1
- {"version":3,"file":"GlideClusterClient.js","sourceRoot":"","sources":["../../src/GlideClusterClient.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"GlideClusterClient.js","sourceRoot":"","sources":["../../src/GlideClusterClient.ts"],"names":[],"mappings":"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"}