From ab7bb8f8e5d727c361fec02110281810b4c2a5aa Mon Sep 17 00:00:00 2001 From: Daniel Hutzel Date: Wed, 25 Oct 2023 18:21:00 +0200 Subject: [PATCH] Fixed cds.requires.notifications default config --- package.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/package.json b/package.json index 64fa8c3..86eb47a 100644 --- a/package.json +++ b/package.json @@ -32,16 +32,16 @@ }, "cds": { "requires": { + "destinations": true, + "notifications": { + "[development]": { "kind": "notify-to-console" }, + "[production]": { "kind": "notify-to-rest" }, + "destination": "SAP_Notifications", + "prefix": "alert-notification-sample", + "types": "notificationtypes.json", + "outbox": true + }, "kinds": { - "destinations": true, - "notifications": { - "[development]": { "kind": "notify-to-console" }, - "[production]": { "kind": "notify-to-rest" }, - "destination": "SAP_Notifications", - "prefix": "alert-notification-sample", - "types": "notificationtypes.json", - "outbox": true - }, "notify-to-console": { "impl": "@cap-js/notifications/srv/notifyToConsole" },