@singi-labs/sifa-sdk 0.12.86 → 0.12.88

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
@@ -1028,6 +1028,8 @@ var APP_CATEGORY_MAP = {
1028
1028
  smokesignal: "Events",
1029
1029
  flashes: "Photos",
1030
1030
  grain: "Photos",
1031
+ pixl: "Photos",
1032
+ // pics.pixl.image — photo posts on pixl.pics
1031
1033
  whitewind: "Articles",
1032
1034
  frontpage: "Links",
1033
1035
  pastesphere: "Pastes",
@@ -2853,7 +2855,8 @@ function buildMetaDescription(profile) {
2853
2855
  if (currentPosition) {
2854
2856
  const positionParts = [];
2855
2857
  if (currentPosition.title) positionParts.push(currentPosition.title);
2856
- if (currentPosition.company) positionParts.push(`at ${currentPosition.company}`);
2858
+ const company = currentPosition.entityName ?? currentPosition.company;
2859
+ if (company) positionParts.push(`at ${company}`);
2857
2860
  if (positionParts.length > 0) parts.push(positionParts.join(" "));
2858
2861
  }
2859
2862
  if (profile.location) {
@@ -3252,6 +3255,7 @@ var COLLECTION_TO_APP = [
3252
3255
  ["com.kipclip.", "kipclip"],
3253
3256
  ["blue.flashes.", "flashes"],
3254
3257
  ["social.grain.", "grain"],
3258
+ ["pics.pixl.", "pixl"],
3255
3259
  ["com.whtwnd.", "whitewind"],
3256
3260
  ["fyi.unravel.frontpage.", "frontpage"],
3257
3261
  ["social.psky.", "picosky"],
@@ -5827,7 +5831,7 @@ function describeSifaRecord(collection, value) {
5827
5831
  }
5828
5832
 
5829
5833
  // src/index.ts
5830
- var SIFA_SDK_VERSION = "0.12.86";
5834
+ var SIFA_SDK_VERSION = "0.12.88";
5831
5835
 
5832
5836
  exports.ACTIVITY_TIERS = ACTIVITY_TIERS;
5833
5837
  exports.ACTIVITY_VERBS = ACTIVITY_VERBS;