@singi-labs/sifa-sdk 0.11.7 → 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 +50 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +15 -0
- package/dist/index.d.ts +15 -0
- package/dist/index.js +50 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -972,6 +972,38 @@ var APP_CATEGORY_MAP = {
|
|
|
972
972
|
// is io.atcr.repo.page (a published repository with a markdown README);
|
|
973
973
|
// manifests and tags are low-level artifacts excluded backend-side.
|
|
974
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
|
|
975
1007
|
// Web-only (rendered in pills/cards via sifa-web atproto-apps.ts;
|
|
976
1008
|
// no backend scan collection yet)
|
|
977
1009
|
linkat: "Links",
|
|
@@ -1961,7 +1993,23 @@ var COLLECTION_TO_APP = [
|
|
|
1961
1993
|
["quest.atmo.", "atmorsvp"],
|
|
1962
1994
|
["community.opensocial.", "opensocial"],
|
|
1963
1995
|
["is.kevara.", "kevara"],
|
|
1964
|
-
["io.atcr.", "atcr"]
|
|
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"]
|
|
1965
2013
|
];
|
|
1966
2014
|
|
|
1967
2015
|
// src/cards/resolve-card-url.ts
|
|
@@ -2596,7 +2644,7 @@ var ProfileVolunteeringRecordSchema = zod.z.object({
|
|
|
2596
2644
|
});
|
|
2597
2645
|
|
|
2598
2646
|
// src/index.ts
|
|
2599
|
-
var SIFA_SDK_VERSION = "0.11.
|
|
2647
|
+
var SIFA_SDK_VERSION = "0.11.8";
|
|
2600
2648
|
|
|
2601
2649
|
exports.ACTIVITY_TIERS = ACTIVITY_TIERS;
|
|
2602
2650
|
exports.ACTIVITY_VISIBILITY_RULES = ACTIVITY_VISIBILITY_RULES;
|