@singi-labs/sifa-sdk 0.11.6 → 0.11.8

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
@@ -968,6 +968,42 @@ var APP_CATEGORY_MAP = {
968
968
  // Marque domain registrar — a domain registration record is a dated
969
969
  // identity/ownership action, surfaced as a "registered a domain" event.
970
970
  marque: "Domains",
971
+ // ATCR (io.atcr) — distributed OCI container registry. The portfolio entry
972
+ // is io.atcr.repo.page (a published repository with a markdown README);
973
+ // manifests and tags are low-level artifacts excluded backend-side.
974
+ atcr: "Code",
975
+ // Batch onboard — apps surfaced on high-volume profiles. Each gives its
976
+ // collections a named pill + category icon instead of a raw NSID.
977
+ mcp: "Code",
978
+ // app.mcp.server — published MCP servers (name/tools/language)
979
+ userinput: "Social",
980
+ // app.userinput — roadmap discussions + replies
981
+ minomobi: "Music",
982
+ // com.minomobi.music.composition — authored music
983
+ voxport: "Video",
984
+ // com.voxport.podcast.series — podcast series
985
+ badges: "Verification",
986
+ // community.lexicon.badge.award — signed earned credentials
987
+ atvouch: "Endorsements",
988
+ // dev.atvouch.graph.vouch — trust vouches
989
+ watsm: "Code",
990
+ // io.calabro.watsm.program — published WASM programs
991
+ plonk: "Pastes",
992
+ // li.plonk.paste — text pastes
993
+ alternativeproto: "Links",
994
+ // net.alternativeproto.submission — app-directory listings
995
+ papili: "Links",
996
+ // one.papili.post — link posts
997
+ vit: "Code",
998
+ // org.v-it.skill — published agent skills
999
+ lifepo: "Social",
1000
+ // st.lifepo.lifeEvent — life-event timeline
1001
+ streamthought: "Posts",
1002
+ // stream.thought.blip — microblog thoughts
1003
+ waow: "Photos",
1004
+ // tech.waow.* — doodl drawings (dominant), polls, slides
1005
+ lichen: "Pages",
1006
+ // wiki.lichen — wiki notes + wikis
971
1007
  // Web-only (rendered in pills/cards via sifa-web atproto-apps.ts;
972
1008
  // no backend scan collection yet)
973
1009
  linkat: "Links",
@@ -1904,6 +1940,13 @@ var APP_URL_PATTERNS = Object.freeze({
1904
1940
  // Kevara (professional network) has no live public web surface yet — its
1905
1941
  // domain doesn't resolve and there's no per-record viewer. Recognized so
1906
1942
  // the speaker-directory card renders with the right pill, but non-clickable.
1943
+ },
1944
+ atcr: {
1945
+ // ATCR repositories live at /r/{handle}/{repository}, where the rkey of an
1946
+ // io.atcr.repo.page record is the repository name. Verified live: GET
1947
+ // /r/{handle}/{rkey} and /u/{handle} both return 200.
1948
+ urlPattern: "https://atcr.io/r/{handle}/{rkey}",
1949
+ profileUrlPattern: "https://atcr.io/u/{handle}"
1907
1950
  }
1908
1951
  });
1909
1952
  var COLLECTION_TO_APP = [
@@ -1949,7 +1992,24 @@ var COLLECTION_TO_APP = [
1949
1992
  ["social.crate.", "crate"],
1950
1993
  ["quest.atmo.", "atmorsvp"],
1951
1994
  ["community.opensocial.", "opensocial"],
1952
- ["is.kevara.", "kevara"]
1995
+ ["is.kevara.", "kevara"],
1996
+ ["io.atcr.", "atcr"],
1997
+ // Batch onboard — named pills for apps that were leaking as raw NSIDs.
1998
+ ["app.mcp.", "mcp"],
1999
+ ["app.userinput.", "userinput"],
2000
+ ["com.minomobi.", "minomobi"],
2001
+ ["com.voxport.", "voxport"],
2002
+ ["community.lexicon.badge.", "badges"],
2003
+ ["dev.atvouch.", "atvouch"],
2004
+ ["io.calabro.watsm.", "watsm"],
2005
+ ["li.plonk.", "plonk"],
2006
+ ["net.alternativeproto.", "alternativeproto"],
2007
+ ["one.papili.", "papili"],
2008
+ ["org.v-it.", "vit"],
2009
+ ["st.lifepo.", "lifepo"],
2010
+ ["stream.thought.", "streamthought"],
2011
+ ["tech.waow.", "waow"],
2012
+ ["wiki.lichen.", "lichen"]
1953
2013
  ];
1954
2014
 
1955
2015
  // src/cards/resolve-card-url.ts
@@ -2584,7 +2644,7 @@ var ProfileVolunteeringRecordSchema = zod.z.object({
2584
2644
  });
2585
2645
 
2586
2646
  // src/index.ts
2587
- var SIFA_SDK_VERSION = "0.11.6";
2647
+ var SIFA_SDK_VERSION = "0.11.8";
2588
2648
 
2589
2649
  exports.ACTIVITY_TIERS = ACTIVITY_TIERS;
2590
2650
  exports.ACTIVITY_VISIBILITY_RULES = ACTIVITY_VISIBILITY_RULES;