@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.
|
@@ -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
package/websocket-manager.ts
CHANGED
|
@@ -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
|
}
|