Skip to content

Commit

Permalink
Updated typings/index.d.ts
Browse files Browse the repository at this point in the history
Fixed batchRemove parameter to keys rather than records
Changed the aerospike-client-c.ini file to current package version.
  • Loading branch information
DomPeliniAerospike committed Nov 3, 2023
1 parent 7f40daf commit d5f9694
Show file tree
Hide file tree
Showing 3 changed files with 99 additions and 13 deletions.
2 changes: 1 addition & 1 deletion aerospike-client-c.ini
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@

# Version number of the dependencies package for C client (Windows only)
AEROSPIKE_C_DEPS_VERSION=1.0.1
AEROSPIKE_C_DEPS_VERSION=1.0.2
2 changes: 1 addition & 1 deletion lib/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -1611,7 +1611,7 @@ Client.prototype.batchApply = function (keys, udf, batchPolicy, batchApplyPolicy
* await client.close();
* })();
*/
Client.prototype.batchRemove = function (records, batchPolicy, batchRemovePolicy, callback) {
Client.prototype.batchRemove = function (keys, batchPolicy, batchRemovePolicy, callback) {
if (typeof batchPolicy === 'function') {
callback = batchPolicy
batchPolicy = null
Expand Down
Loading

0 comments on commit d5f9694

Please sign in to comment.