pulsar-client 1.13.0-rc.3 → 1.13.1-rc.1

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pulsar-client",
3
- "version": "1.13.0-rc.3",
3
+ "version": "1.13.1-rc.1",
4
4
  "description": "Pulsar Node.js client",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -97,7 +97,7 @@ Napi::Object Authentication::Init(Napi::Env env, Napi::Object exports) {
97
97
  }
98
98
 
99
99
  Authentication::Authentication(const Napi::CallbackInfo &info)
100
- : Napi::ObjectWrap<Authentication>(info), cAuthentication(nullptr) {
100
+ : Napi::ObjectWrap<Authentication>(info), cAuthentication(nullptr), tokenSupplier(nullptr) {
101
101
  Napi::Env env = info.Env();
102
102
  Napi::HandleScope scope(env);
103
103