@singi-labs/sifa-sdk 0.9.22 → 0.10.1
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 +17 -11
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +14 -7
- package/dist/index.d.ts +14 -7
- package/dist/index.js +17 -11
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -804,12 +804,13 @@ var APP_CATEGORIES = {
|
|
|
804
804
|
Events: { phosphorIcon: "CalendarBlank" },
|
|
805
805
|
Links: { phosphorIcon: "LinkSimple" },
|
|
806
806
|
Lists: { phosphorIcon: "ListBullets" },
|
|
807
|
-
|
|
807
|
+
Music: { phosphorIcon: "MusicNote" },
|
|
808
|
+
Pages: { phosphorIcon: "Browser" },
|
|
808
809
|
Pastes: { phosphorIcon: "Clipboard" },
|
|
809
810
|
Photos: { phosphorIcon: "Camera" },
|
|
810
811
|
Places: { phosphorIcon: "MapPin" },
|
|
811
812
|
Posts: { phosphorIcon: "ChatCircle" },
|
|
812
|
-
|
|
813
|
+
"Q&A": { phosphorIcon: "Question" },
|
|
813
814
|
Research: { phosphorIcon: "Path" },
|
|
814
815
|
Reviews: { phosphorIcon: "Star" },
|
|
815
816
|
Social: { phosphorIcon: "UsersThree" },
|
|
@@ -826,7 +827,7 @@ function getAppCategoryIcon(category) {
|
|
|
826
827
|
|
|
827
828
|
// src/taxonomy/app-category-map.ts
|
|
828
829
|
var APP_CATEGORY_MAP = {
|
|
829
|
-
//
|
|
830
|
+
// Backend-scanned (sifa-api APP_REGISTRY)
|
|
830
831
|
bluesky: "Posts",
|
|
831
832
|
tangled: "Code",
|
|
832
833
|
github: "Code",
|
|
@@ -848,16 +849,21 @@ var APP_CATEGORY_MAP = {
|
|
|
848
849
|
leaflet: "Articles",
|
|
849
850
|
colibri: "Social",
|
|
850
851
|
collectivesocial: "Lists",
|
|
851
|
-
// Web-only (rendered in pills/cards; not scanned as standalone collections yet)
|
|
852
|
-
linkat: "Links",
|
|
853
|
-
kipclip: "Links",
|
|
854
|
-
statusphere: "Social",
|
|
855
852
|
bookhive: "Reviews",
|
|
856
|
-
passports: "Social",
|
|
857
853
|
beaconbits: "Places",
|
|
858
|
-
|
|
854
|
+
passports: "Places",
|
|
855
|
+
asq: "Q&A",
|
|
856
|
+
spark: "Posts",
|
|
857
|
+
nooki: "Social",
|
|
858
|
+
atstore: "Reviews",
|
|
859
|
+
plyr: "Music",
|
|
859
860
|
anisota: "Posts",
|
|
860
|
-
|
|
861
|
+
// Web-only (rendered in pills/cards via sifa-web atproto-apps.ts;
|
|
862
|
+
// no backend scan collection yet)
|
|
863
|
+
linkat: "Links",
|
|
864
|
+
kipclip: "Links",
|
|
865
|
+
statusphere: "Social",
|
|
866
|
+
margin: "Research"
|
|
861
867
|
};
|
|
862
868
|
function isKnownAppId(appId) {
|
|
863
869
|
return Object.prototype.hasOwnProperty.call(APP_CATEGORY_MAP, appId);
|
|
@@ -2063,7 +2069,7 @@ var ProfileVolunteeringRecordSchema = zod.z.object({
|
|
|
2063
2069
|
});
|
|
2064
2070
|
|
|
2065
2071
|
// src/index.ts
|
|
2066
|
-
var SIFA_SDK_VERSION = "0.
|
|
2072
|
+
var SIFA_SDK_VERSION = "0.10.1";
|
|
2067
2073
|
|
|
2068
2074
|
exports.ACTIVITY_TIERS = ACTIVITY_TIERS;
|
|
2069
2075
|
exports.ACTIVITY_VISIBILITY_RULES = ACTIVITY_VISIBILITY_RULES;
|