From ba94e1732536114d5740fcaea130fc2a3728bb75 Mon Sep 17 00:00:00 2001 From: Dominic Pelini Date: Fri, 1 Nov 2024 14:03:22 -0600 Subject: [PATCH] Changed protected class modifier to class. --- CHANGELOG.md | 4 ++++ package.json | 8 ++++++-- typings/index.d.ts | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa2df30c9..a7a96c77e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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** diff --git a/package.json b/package.json index d5f2d12fc..e7031e2d6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "aerospike", - "version": "5.13.1", + "version": "5.13.2", "description": "Aerospike Client Library", "keywords": [ "aerospike", @@ -93,7 +93,8 @@ "apidocs", "tmp-*.js", "/*.js", - "libuv-v*" + "libuv-v*", + "ts-test/dist" ] }, "files": [ @@ -101,12 +102,15 @@ "aerospike-client-c.sha256", "binding.gyp", "benchmarks/", + "CHANGELOG.md", "examples/", "lib/", + "LICENSE", "scripts/", "src/", "test/", "ts-test/", + "tsconfig.json", "typings/" ] } diff --git a/typings/index.d.ts b/typings/index.d.ts index 78143a3fc..381cf4be1 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -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. */