@singi-labs/sifa-sdk 0.12.85 → 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 +3 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +7 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/jsonld/index.cjs +2 -2
- package/dist/jsonld/index.cjs.map +1 -1
- package/dist/jsonld/index.d.cts +6 -0
- package/dist/jsonld/index.d.ts +6 -0
- package/dist/jsonld/index.js +2 -2
- package/dist/jsonld/index.js.map +1 -1
- package/dist/publishing/index.cjs +40 -0
- package/dist/publishing/index.cjs.map +1 -1
- package/dist/publishing/index.d.cts +58 -1
- package/dist/publishing/index.d.ts +58 -1
- package/dist/publishing/index.js +38 -1
- package/dist/publishing/index.js.map +1 -1
- package/package.json +1 -1
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
|
-
|
|
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.
|
|
5831
|
+
var SIFA_SDK_VERSION = "0.12.87";
|
|
5831
5832
|
|
|
5832
5833
|
exports.ACTIVITY_TIERS = ACTIVITY_TIERS;
|
|
5833
5834
|
exports.ACTIVITY_VERBS = ACTIVITY_VERBS;
|