@checkstack/notification-backend 0.0.2 → 0.0.4
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 +31 -0
- package/package.json +1 -1
- package/src/router.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# @checkstack/notification-backend
|
|
2
2
|
|
|
3
|
+
## 0.0.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [97c5a6b]
|
|
8
|
+
- Updated dependencies [8e43507]
|
|
9
|
+
- @checkstack/backend-api@0.2.0
|
|
10
|
+
- @checkstack/auth-backend@0.1.0
|
|
11
|
+
- @checkstack/auth-common@0.1.0
|
|
12
|
+
- @checkstack/common@0.1.0
|
|
13
|
+
- @checkstack/queue-api@0.0.4
|
|
14
|
+
- @checkstack/notification-common@0.0.4
|
|
15
|
+
- @checkstack/signal-common@0.0.4
|
|
16
|
+
|
|
17
|
+
## 0.0.3
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- f5b1f49: Updated frontend URL environment variable from `VITE_FRONTEND_URL` to `BASE_URL` for consistency.
|
|
22
|
+
- Updated dependencies [f5b1f49]
|
|
23
|
+
- Updated dependencies [f5b1f49]
|
|
24
|
+
- Updated dependencies [f5b1f49]
|
|
25
|
+
- Updated dependencies [f5b1f49]
|
|
26
|
+
- @checkstack/auth-backend@0.0.3
|
|
27
|
+
- @checkstack/backend-api@0.1.0
|
|
28
|
+
- @checkstack/common@0.0.3
|
|
29
|
+
- @checkstack/queue-api@0.0.3
|
|
30
|
+
- @checkstack/auth-common@0.0.3
|
|
31
|
+
- @checkstack/notification-common@0.0.3
|
|
32
|
+
- @checkstack/signal-common@0.0.3
|
|
33
|
+
|
|
3
34
|
## 0.0.2
|
|
4
35
|
|
|
5
36
|
### Patch Changes
|
package/package.json
CHANGED
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.
|
|
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.
|
|
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)
|