@checkstack/notification-backend 0.0.2 → 0.0.3

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/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @checkstack/notification-backend
2
2
 
3
+ ## 0.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - f5b1f49: Updated frontend URL environment variable from `VITE_FRONTEND_URL` to `BASE_URL` for consistency.
8
+ - Updated dependencies [f5b1f49]
9
+ - Updated dependencies [f5b1f49]
10
+ - Updated dependencies [f5b1f49]
11
+ - Updated dependencies [f5b1f49]
12
+ - @checkstack/auth-backend@0.0.3
13
+ - @checkstack/backend-api@0.1.0
14
+ - @checkstack/common@0.0.3
15
+ - @checkstack/queue-api@0.0.3
16
+ - @checkstack/auth-common@0.0.3
17
+ - @checkstack/notification-common@0.0.3
18
+ - @checkstack/signal-common@0.0.3
19
+
3
20
  ## 0.0.2
4
21
 
5
22
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/notification-backend",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "type": "module",
5
5
  "main": "src/index.ts",
6
6
  "checkstack": {
package/src/router.ts CHANGED
@@ -190,7 +190,7 @@ export const createNotificationRouter = (
190
190
  strategy.qualifiedId
191
191
  );
192
192
 
193
- const baseUrl = process.env.VITE_FRONTEND_URL;
193
+ const baseUrl = process.env.BASE_URL;
194
194
  if (!baseUrl) {
195
195
  logger.error(
196
196
  "[notification-backend] No frontend URL configured, but action included only a path"
@@ -1035,7 +1035,7 @@ export const createNotificationRouter = (
1035
1035
  };
1036
1036
 
1037
1037
  // Get base URL for action
1038
- const baseUrl = process.env.VITE_FRONTEND_URL;
1038
+ const baseUrl = process.env.BASE_URL;
1039
1039
  if (baseUrl && testNotification.action) {
1040
1040
  // For localhost, use a demo URL to show action buttons work
1041
1041
  // (Telegram rejects localhost URLs in action buttons)