diff --git a/package-lock.json b/package-lock.json index 4dce291..369c6c3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "notificationapi-node-server-sdk", - "version": "2.3.0", + "version": "2.3.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "notificationapi-node-server-sdk", - "version": "2.3.0", + "version": "2.3.1", "license": "ISC", "dependencies": { "axios": "^1.7.9" diff --git a/package.json b/package.json index 890e8c1..16eb602 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "notificationapi-node-server-sdk", - "version": "2.3.0", + "version": "2.3.1", "description": "NotificationAPI server-side library for Node.js", "keywords": [ "notificationapi", @@ -22,6 +22,10 @@ ".": { "import": "./lib/esm/index.js", "require": "./lib/cjs/index.js" + }, + "./interfaces": { + "import": "./lib/esm/interfaces.js", + "require": "./lib/cjs/interfaces.js" } }, "files": [ diff --git a/src/notificationapi.ts b/src/notificationapi.ts index 1fad8eb..704f31a 100644 --- a/src/notificationapi.ts +++ b/src/notificationapi.ts @@ -15,7 +15,7 @@ import { createHmac } from 'crypto'; class NotificationAPIService { private USER_AGENT = 'notificationapi-node-server-sdk'; - private VERSION = '2.2.1'; + private VERSION = '2.3.1'; clientId: null | string = null; clientSecret: null | string = null;