@singi-labs/sifa-sdk 0.12.86 → 0.12.87

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/index.cjs CHANGED
@@ -2853,7 +2853,8 @@ function buildMetaDescription(profile) {
2853
2853
  if (currentPosition) {
2854
2854
  const positionParts = [];
2855
2855
  if (currentPosition.title) positionParts.push(currentPosition.title);
2856
- if (currentPosition.company) positionParts.push(`at ${currentPosition.company}`);
2856
+ const company = currentPosition.entityName ?? currentPosition.company;
2857
+ if (company) positionParts.push(`at ${company}`);
2857
2858
  if (positionParts.length > 0) parts.push(positionParts.join(" "));
2858
2859
  }
2859
2860
  if (profile.location) {
@@ -5827,7 +5828,7 @@ function describeSifaRecord(collection, value) {
5827
5828
  }
5828
5829
 
5829
5830
  // src/index.ts
5830
- var SIFA_SDK_VERSION = "0.12.86";
5831
+ var SIFA_SDK_VERSION = "0.12.87";
5831
5832
 
5832
5833
  exports.ACTIVITY_TIERS = ACTIVITY_TIERS;
5833
5834
  exports.ACTIVITY_VERBS = ACTIVITY_VERBS;