@fluid-app/portal-sdk 0.1.228 → 0.1.230
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/dist/{FluidProvider-Bl8BC3N1.cjs → FluidProvider-Bc56jo27.cjs} +5 -3
- package/dist/{FluidProvider-Bl8BC3N1.cjs.map → FluidProvider-Bc56jo27.cjs.map} +1 -1
- package/dist/{FluidProvider-1ny2_ye-.mjs → FluidProvider-CLpYfVNX.mjs} +5 -3
- package/dist/{FluidProvider-1ny2_ye-.mjs.map → FluidProvider-CLpYfVNX.mjs.map} +1 -1
- package/dist/{MessagingScreen-CF2894Tr.cjs → MessagingScreen-BJnHF8Va.cjs} +2 -2
- package/dist/{MessagingScreen-CF2894Tr.cjs.map → MessagingScreen-BJnHF8Va.cjs.map} +1 -1
- package/dist/{MessagingScreen-7VQtzmmg.mjs → MessagingScreen-DLmXcdxZ.mjs} +2 -2
- package/dist/{MessagingScreen-7VQtzmmg.mjs.map → MessagingScreen-DLmXcdxZ.mjs.map} +1 -1
- package/dist/{MessagingScreen-BbCJ4ctF.cjs → MessagingScreen-araykPtU.cjs} +2 -2
- package/dist/{ProfileScreen-BOvOpIS1.mjs → ProfileScreen-B55RliPH.mjs} +2 -2
- package/dist/{ProfileScreen-BOvOpIS1.mjs.map → ProfileScreen-B55RliPH.mjs.map} +1 -1
- package/dist/{ProfileScreen-DE6Rrw23.cjs → ProfileScreen-CgieZEps.cjs} +2 -2
- package/dist/{ProfileScreen-DE6Rrw23.cjs.map → ProfileScreen-CgieZEps.cjs.map} +1 -1
- package/dist/{ProfileScreen-BT-SOUnq.cjs → ProfileScreen-KkzdoK5p.cjs} +2 -2
- package/dist/{ShareablesScreen-ujMMFRgM.cjs → ShareablesScreen-CTIe6EH0.cjs} +1 -1
- package/dist/{ShareablesScreen-DaOvfu8L.mjs → ShareablesScreen-DjRtywMv.mjs} +75 -89
- package/dist/ShareablesScreen-DjRtywMv.mjs.map +1 -0
- package/dist/{ShareablesScreen-D6zYE_qj.cjs → ShareablesScreen-o6frhZUM.cjs} +75 -89
- package/dist/ShareablesScreen-o6frhZUM.cjs.map +1 -0
- package/dist/{ShopScreen-yZUXE55P.cjs → ShopScreen-8VoJvVs7.cjs} +2 -2
- package/dist/{ShopScreen-yZUXE55P.cjs.map → ShopScreen-8VoJvVs7.cjs.map} +1 -1
- package/dist/{ShopScreen-IQ3tqLfP.cjs → ShopScreen-Bgflgt7W.cjs} +2 -2
- package/dist/{ShopScreen-CJcGSrG4.mjs → ShopScreen-DEKy0nFN.mjs} +2 -2
- package/dist/{ShopScreen-CJcGSrG4.mjs.map → ShopScreen-DEKy0nFN.mjs.map} +1 -1
- package/dist/index.cjs +13 -13
- package/dist/index.mjs +13 -13
- package/package.json +14 -14
- package/dist/ShareablesScreen-D6zYE_qj.cjs.map +0 -1
- package/dist/ShareablesScreen-DaOvfu8L.mjs.map +0 -1
|
@@ -1519,6 +1519,8 @@ function mapProfile(raw) {
|
|
|
1519
1519
|
return {
|
|
1520
1520
|
id: raw.id ?? 0,
|
|
1521
1521
|
mysite_url: raw.mysite_url ?? null,
|
|
1522
|
+
mysite_views: raw.mysite_views ?? 0,
|
|
1523
|
+
mysite_leads: raw.mysite_leads ?? 0,
|
|
1522
1524
|
theme_id: raw.theme_id ?? null,
|
|
1523
1525
|
bio: raw.bio ?? null,
|
|
1524
1526
|
avatar_url: raw.avatar_url ?? null,
|
|
@@ -1776,8 +1778,8 @@ function mapBffPointsLedger(ledgers) {
|
|
|
1776
1778
|
function mapBffMySiteProfile(profile) {
|
|
1777
1779
|
return {
|
|
1778
1780
|
url: profile.mysite_url ?? null,
|
|
1779
|
-
views: 0,
|
|
1780
|
-
leads: 0,
|
|
1781
|
+
views: profile.mysite_views ?? 0,
|
|
1782
|
+
leads: profile.mysite_leads ?? 0,
|
|
1781
1783
|
userName: profile.display_name ?? "User"
|
|
1782
1784
|
};
|
|
1783
1785
|
}
|
|
@@ -2327,4 +2329,4 @@ Object.defineProperty(exports, "widgetPropertySchemas", {
|
|
|
2327
2329
|
}
|
|
2328
2330
|
});
|
|
2329
2331
|
|
|
2330
|
-
//# sourceMappingURL=FluidProvider-
|
|
2332
|
+
//# sourceMappingURL=FluidProvider-Bc56jo27.cjs.map
|