@kumori/aurora-backend-handler 1.0.20 → 1.0.22

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.
@@ -1025,7 +1025,7 @@ export const loadMarketplaceItemsForTenant = async (
1025
1025
  const marketplaceItem: MarketplaceItem = {
1026
1026
  tenant: tenant,
1027
1027
  name: item.module,
1028
- logo: item.logo,
1028
+ logo: item.icon,
1029
1029
  description: item.description,
1030
1030
  version: item.version,
1031
1031
  requirements: {
@@ -784,7 +784,7 @@ export const loadUserData = async () => {
784
784
  const item: MarketplaceItem = {
785
785
  tenant: tenant.toString(),
786
786
  name: (value as any).name,
787
- logo: "https://gitlab.com/uploads/-/system/group/avatar/86481133/Axebow-Logo-2.jpeg?width=96",
787
+ logo: (value as any).icon,
788
788
  description: (value as any).name,
789
789
  version: (value as any).version,
790
790
  requirements: {
package/package.json CHANGED
@@ -23,7 +23,7 @@
23
23
  "ws": "^8.18.2"
24
24
  },
25
25
  "name": "@kumori/aurora-backend-handler",
26
- "version": "1.0.20",
26
+ "version": "1.0.22",
27
27
  "description": "backend handler",
28
28
  "main": "backend-handler.ts",
29
29
  "repository": {