From e1dab283f3c8db929dccd57096f35e898596a33c Mon Sep 17 00:00:00 2001 From: Sahand Seifi Date: Fri, 31 Oct 2025 10:35:59 -0400 Subject: [PATCH 1/2] Add 'me' field to slack.getChannels response --- lib/client.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/client.ts b/lib/client.ts index b0c16a5..7263fd4 100644 --- a/lib/client.ts +++ b/lib/client.ts @@ -134,6 +134,7 @@ type NotificationAPIClientSDK = { getChannels: () => Promise<{ channels: SlackChannel[]; users: SlackUser[]; + me: SlackUser; }>; setChannel: (channelId: string) => Promise; }; From fbc21fa5617ce59b9f6d8acf93aeac7f999cc9f1 Mon Sep 17 00:00:00 2001 From: Sahand Seifi Date: Fri, 31 Oct 2025 10:36:09 -0400 Subject: [PATCH 2/2] 1.1.0 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 32f8578..a8b0b10 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@notificationapi/core", - "version": "1.0.2", + "version": "1.1.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@notificationapi/core", - "version": "1.0.2", + "version": "1.1.0", "devDependencies": { "@types/jest": "^29.5.3", "@types/node": "^20.14.10", diff --git a/package.json b/package.json index 912eabf..ad44775 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@notificationapi/core", - "version": "1.0.2", + "version": "1.1.0", "type": "module", "main": "dist/main.js", "types": "dist/main.d.ts",