@kumori/aurora-backend-handler 1.0.90 → 1.0.91

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.
@@ -972,6 +972,7 @@ const linkPendingServices = async (service: Service, token: string) => {
972
972
  service: service.name,
973
973
  tenant: service.tenant,
974
974
  },
975
+ userError: true,
975
976
  };
976
977
 
977
978
  eventHelper.notification.publish.creation(notification);
@@ -354,6 +354,7 @@ export const linkPendingServices = async (service: Service, token: string) => {
354
354
  service: service.name,
355
355
  tenant: service.tenant,
356
356
  },
357
+ userError: true,
357
358
  };
358
359
 
359
360
  eventHelper.notification.publish.creation(notification);
@@ -782,6 +783,7 @@ export const updateServiceLinks = async (link: Link, token: string) => {
782
783
  service: link.origin,
783
784
  tenant: link.tenant,
784
785
  },
786
+ userError: true,
785
787
  };
786
788
 
787
789
  eventHelper.notification.publish.creation(notification);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kumori/aurora-backend-handler",
3
- "version": "1.0.90",
3
+ "version": "1.0.91",
4
4
  "description": "backend handler",
5
5
  "main": "backend-handler.ts",
6
6
  "scripts": {
@@ -1738,6 +1738,7 @@ const handleDeleteEvent = async (message: WSMessage) => {
1738
1738
  targetChannel: deletedLinkInfo.targetChannel,
1739
1739
  tenant: deletedLinkInfo.tenant,
1740
1740
  },
1741
+ userError: true,
1741
1742
  };
1742
1743
  eventHelper.notification.publish.creation(unlinkNotification);
1743
1744
  }