Skip to content

Commit

Permalink
Changed protected class modifier to class.
Browse files Browse the repository at this point in the history
  • Loading branch information
DomPeliniAerospike committed Nov 1, 2024
1 parent a504408 commit ba94e17
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file.

## [5.13.2]
* **Bug Fixes**
* [CLIENT-3155] - Fixed typescript compilation by removing the protected modifier from the ExpOperation class.

## [5.13.1]

* **New Features**
Expand Down
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aerospike",
"version": "5.13.1",
"version": "5.13.2",
"description": "Aerospike Client Library",
"keywords": [
"aerospike",
Expand Down Expand Up @@ -93,20 +93,24 @@
"apidocs",
"tmp-*.js",
"/*.js",
"libuv-v*"
"libuv-v*",
"ts-test/dist"
]
},
"files": [
"aerospike-client-c.ini",
"aerospike-client-c.sha256",
"binding.gyp",
"benchmarks/",
"CHANGELOG.md",
"examples/",
"lib/",
"LICENSE",
"scripts/",
"src/",
"test/",
"ts-test/",
"tsconfig.json",
"typings/"
]
}
2 changes: 1 addition & 1 deletion typings/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14247,7 +14247,7 @@ export namespace exp {
* Operations can be created using the methods with the following modules:
* * {@link exp} - General expression on all types.
*/
export protected class ExpOperation extends operations.Operation {
export class ExpOperation extends operations.Operation {
/**
* Aerospike Expression to be evaluated by this operation.
*/
Expand Down

0 comments on commit ba94e17

Please sign in to comment.