@singi-labs/sifa-sdk 0.12.13 → 0.12.14

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
@@ -2747,8 +2747,8 @@ function getPublisherFromSiteUrl(siteUrl) {
2747
2747
  // src/stream/verbs.json
2748
2748
  var verbs_default = {
2749
2749
  $schema: "https://sifa.id/schemas/activity-verbs/v1.json",
2750
- version: "1.0.0",
2751
- updated: "2026-07-17",
2750
+ version: "1.1.0",
2751
+ updated: "2026-07-19",
2752
2752
  defaultVerb: "created",
2753
2753
  verbs: {
2754
2754
  "app.bsky.feed.post": "posted",
@@ -2756,6 +2756,8 @@ var verbs_default = {
2756
2756
  "social.psky.feed.post": "posted",
2757
2757
  "social.popfeed.feed.post": "posted",
2758
2758
  "social.popfeed.feed.note": "posted",
2759
+ "social.popfeed.feed.review": "reviewed",
2760
+ "buzz.bookhive.book": "reviewed",
2759
2761
  "fyi.unravel.frontpage.post": "posted",
2760
2762
  "forum.barazo.post": "posted",
2761
2763
  "app.bsky.feed.repost": "reposted",
@@ -2790,6 +2792,7 @@ var STREAM_VERBS = [
2790
2792
  "endorsed",
2791
2793
  "joined",
2792
2794
  "shipped",
2795
+ "reviewed",
2793
2796
  "created"
2794
2797
  ];
2795
2798
  var streamVerbSchema = zod.z.enum(STREAM_VERBS);
@@ -3170,14 +3173,15 @@ function buildSource(item, options) {
3170
3173
  };
3171
3174
  }
3172
3175
  var TITLE_BY_VERB = {
3173
- posted: (label) => `Posted on ${label}`,
3174
- reposted: () => "Reposted a post",
3176
+ posted: () => "Posted",
3177
+ reposted: () => "Reposted",
3175
3178
  published: (label) => `Published on ${label}`,
3176
3179
  presented: () => "Gave a presentation",
3177
3180
  endorsed: () => "Wrote an endorsement",
3178
3181
  joined: (label) => `Joined ${label}`,
3179
3182
  shipped: (label) => `Shipped on ${label}`,
3180
- created: (label) => `Created a record on ${label}`
3183
+ reviewed: (label) => `Reviewed on ${label}`,
3184
+ created: (label) => `Shared on ${label}`
3181
3185
  };
3182
3186
  function buildTitle(verb, label) {
3183
3187
  return TITLE_BY_VERB[verb](label);
@@ -4540,7 +4544,7 @@ var ProfileVolunteeringRecordSchema = zod.z.object({
4540
4544
  });
4541
4545
 
4542
4546
  // src/index.ts
4543
- var SIFA_SDK_VERSION = "0.12.13";
4547
+ var SIFA_SDK_VERSION = "0.12.14";
4544
4548
 
4545
4549
  exports.ACTIVITY_TIERS = ACTIVITY_TIERS;
4546
4550
  exports.ACTIVITY_VERBS = ACTIVITY_VERBS;