@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.d.cts CHANGED
@@ -354,6 +354,22 @@ declare const APP_CATEGORY_MAP: {
354
354
  readonly opensocial: "Social";
355
355
  readonly kevara: "Events";
356
356
  readonly marque: "Domains";
357
+ readonly atcr: "Code";
358
+ readonly mcp: "Code";
359
+ readonly userinput: "Social";
360
+ readonly minomobi: "Music";
361
+ readonly voxport: "Video";
362
+ readonly badges: "Verification";
363
+ readonly atvouch: "Endorsements";
364
+ readonly watsm: "Code";
365
+ readonly plonk: "Pastes";
366
+ readonly alternativeproto: "Links";
367
+ readonly papili: "Links";
368
+ readonly vit: "Code";
369
+ readonly lifepo: "Social";
370
+ readonly streamthought: "Posts";
371
+ readonly waow: "Photos";
372
+ readonly lichen: "Pages";
357
373
  readonly linkat: "Links";
358
374
  readonly kipclip: "Links";
359
375
  readonly statusphere: "Social";
package/dist/index.d.ts CHANGED
@@ -354,6 +354,22 @@ declare const APP_CATEGORY_MAP: {
354
354
  readonly opensocial: "Social";
355
355
  readonly kevara: "Events";
356
356
  readonly marque: "Domains";
357
+ readonly atcr: "Code";
358
+ readonly mcp: "Code";
359
+ readonly userinput: "Social";
360
+ readonly minomobi: "Music";
361
+ readonly voxport: "Video";
362
+ readonly badges: "Verification";
363
+ readonly atvouch: "Endorsements";
364
+ readonly watsm: "Code";
365
+ readonly plonk: "Pastes";
366
+ readonly alternativeproto: "Links";
367
+ readonly papili: "Links";
368
+ readonly vit: "Code";
369
+ readonly lifepo: "Social";
370
+ readonly streamthought: "Posts";
371
+ readonly waow: "Photos";
372
+ readonly lichen: "Pages";
357
373
  readonly linkat: "Links";
358
374
  readonly kipclip: "Links";
359
375
  readonly statusphere: "Social";
package/dist/index.js CHANGED
@@ -966,6 +966,42 @@ var APP_CATEGORY_MAP = {
966
966
  // Marque domain registrar — a domain registration record is a dated
967
967
  // identity/ownership action, surfaced as a "registered a domain" event.
968
968
  marque: "Domains",
969
+ // ATCR (io.atcr) — distributed OCI container registry. The portfolio entry
970
+ // is io.atcr.repo.page (a published repository with a markdown README);
971
+ // manifests and tags are low-level artifacts excluded backend-side.
972
+ atcr: "Code",
973
+ // Batch onboard — apps surfaced on high-volume profiles. Each gives its
974
+ // collections a named pill + category icon instead of a raw NSID.
975
+ mcp: "Code",
976
+ // app.mcp.server — published MCP servers (name/tools/language)
977
+ userinput: "Social",
978
+ // app.userinput — roadmap discussions + replies
979
+ minomobi: "Music",
980
+ // com.minomobi.music.composition — authored music
981
+ voxport: "Video",
982
+ // com.voxport.podcast.series — podcast series
983
+ badges: "Verification",
984
+ // community.lexicon.badge.award — signed earned credentials
985
+ atvouch: "Endorsements",
986
+ // dev.atvouch.graph.vouch — trust vouches
987
+ watsm: "Code",
988
+ // io.calabro.watsm.program — published WASM programs
989
+ plonk: "Pastes",
990
+ // li.plonk.paste — text pastes
991
+ alternativeproto: "Links",
992
+ // net.alternativeproto.submission — app-directory listings
993
+ papili: "Links",
994
+ // one.papili.post — link posts
995
+ vit: "Code",
996
+ // org.v-it.skill — published agent skills
997
+ lifepo: "Social",
998
+ // st.lifepo.lifeEvent — life-event timeline
999
+ streamthought: "Posts",
1000
+ // stream.thought.blip — microblog thoughts
1001
+ waow: "Photos",
1002
+ // tech.waow.* — doodl drawings (dominant), polls, slides
1003
+ lichen: "Pages",
1004
+ // wiki.lichen — wiki notes + wikis
969
1005
  // Web-only (rendered in pills/cards via sifa-web atproto-apps.ts;
970
1006
  // no backend scan collection yet)
971
1007
  linkat: "Links",
@@ -1902,6 +1938,13 @@ var APP_URL_PATTERNS = Object.freeze({
1902
1938
  // Kevara (professional network) has no live public web surface yet — its
1903
1939
  // domain doesn't resolve and there's no per-record viewer. Recognized so
1904
1940
  // the speaker-directory card renders with the right pill, but non-clickable.
1941
+ },
1942
+ atcr: {
1943
+ // ATCR repositories live at /r/{handle}/{repository}, where the rkey of an
1944
+ // io.atcr.repo.page record is the repository name. Verified live: GET
1945
+ // /r/{handle}/{rkey} and /u/{handle} both return 200.
1946
+ urlPattern: "https://atcr.io/r/{handle}/{rkey}",
1947
+ profileUrlPattern: "https://atcr.io/u/{handle}"
1905
1948
  }
1906
1949
  });
1907
1950
  var COLLECTION_TO_APP = [
@@ -1947,7 +1990,24 @@ var COLLECTION_TO_APP = [
1947
1990
  ["social.crate.", "crate"],
1948
1991
  ["quest.atmo.", "atmorsvp"],
1949
1992
  ["community.opensocial.", "opensocial"],
1950
- ["is.kevara.", "kevara"]
1993
+ ["is.kevara.", "kevara"],
1994
+ ["io.atcr.", "atcr"],
1995
+ // Batch onboard — named pills for apps that were leaking as raw NSIDs.
1996
+ ["app.mcp.", "mcp"],
1997
+ ["app.userinput.", "userinput"],
1998
+ ["com.minomobi.", "minomobi"],
1999
+ ["com.voxport.", "voxport"],
2000
+ ["community.lexicon.badge.", "badges"],
2001
+ ["dev.atvouch.", "atvouch"],
2002
+ ["io.calabro.watsm.", "watsm"],
2003
+ ["li.plonk.", "plonk"],
2004
+ ["net.alternativeproto.", "alternativeproto"],
2005
+ ["one.papili.", "papili"],
2006
+ ["org.v-it.", "vit"],
2007
+ ["st.lifepo.", "lifepo"],
2008
+ ["stream.thought.", "streamthought"],
2009
+ ["tech.waow.", "waow"],
2010
+ ["wiki.lichen.", "lichen"]
1951
2011
  ];
1952
2012
 
1953
2013
  // src/cards/resolve-card-url.ts
@@ -2582,7 +2642,7 @@ var ProfileVolunteeringRecordSchema = z.object({
2582
2642
  });
2583
2643
 
2584
2644
  // src/index.ts
2585
- var SIFA_SDK_VERSION = "0.11.6";
2645
+ var SIFA_SDK_VERSION = "0.11.8";
2586
2646
 
2587
2647
  export { ACTIVITY_TIERS, ACTIVITY_VISIBILITY_RULES, ADULT_CONTENT_LABELS, APP_CATEGORIES, APP_CATEGORY_IDS, APP_CATEGORY_MAP, APP_URL_PATTERNS, AtmosphereFeedItemSchema, CALENDAR_EVENT_MODE_LABELS, CALENDAR_EVENT_STATUS_LABELS, CATEGORY_LABELS, CATEGORY_ORDER, COLLECTION_TO_APP, COMPANY_OPTIONAL_EMPLOYMENT_TYPES, COMPLETENESS_MAX_SCORE, CONTINENTS, COUNTRIES, DIMENSIONS_MAX_SCORE, EMPLOYMENT_TYPE_GROUPS, EMPLOYMENT_TYPE_LABELS, EndorsementConfirmationRecordSchema, EndorsementRecordSchema, FEATURE_FLAGS, FeatureAllowlistEntrySchema, FeedActorSchema, FollowFeedItemSchema, FollowFeedPageSchema, FollowProfilePageSchema, FollowProfileSchema, GraphFollowRecordSchema, INDUSTRY_OPTIONS, MIN_SKILLS, OPEN_TO_OPTIONS, OPEN_TO_TOKENS, OPEN_TO_TOKEN_TO_VALUE, OPEN_TO_VALUE_TO_TOKEN, PLATFORM_LABELS, PLATFORM_OPTIONS, PRESENTATION_LINK_TYPE_LABELS, PRESENTATION_LINK_TYPE_OPTIONS, PRESENTATION_ROLE_LABELS, PRESENTATION_ROLE_OPTIONS, PUBLISHERS, PresentationDurationSchema, PresentationLinkSchema, ProfileCertificationRecordSchema, ProfileCourseRecordSchema, ProfileEducationRecordSchema, ProfileExternalAccountRecordSchema, ProfileHonorRecordSchema, ProfileLanguageRecordSchema, ProfilePositionRecordSchema, ProfilePresentationDeliveryRecordSchema, ProfilePresentationRecordSchema, ProfileProjectRecordSchema, ProfilePublicationRecordSchema, ProfileSelfRecordSchema, ProfileSkillRecordSchema, ProfileVolunteeringRecordSchema, PublicationAuthorSchema, SIFA_SDK_VERSION, SKILL_CATEGORIES, STANDARD_PUBLISHER_ID, SifaFeedItemSchema, WORKPLACE_TYPE_LABELS, WORKPLACE_TYPE_OPTIONS, atUriSchema, categoryForApp, certDateExtractor, cidSchema, completenessPercent, completenessScore, contrastRatio, countFilledDimensions, countryCodeToFlag, dateRangeExtractor, datetimeSchema, decodeFeedCursor, dedupeSkills, detectPdsProvider, didSchema, dimensionsFromInputs, durationFromMinutes, encodeFeedCursor, externalRecordRefSchema, findIndustry, formatDistanceToNow, formatLocation, formatPresentationDuration, formatRelativeTime, getActivityTaxonomyVersion, getActivityTier, getAppCategoryIcon, getAppIdForCollection, getCalendarEventModeLabel, getCalendarEventStatusLabel, getContinent, getDisplayLabel, getEmploymentTypeLabel, getFaviconUrl, getFilledDimensionsMap, getHandleStem, getIndustryLabelKey, getLexiconEntry, getOpenToLabelKey, getPdsDisplayName, getPlatformLabel, getPresentationLinkTypeLabel, getPresentationRoleLabel, getPublisherByHost, getPublisherById, getPublisherFromSiteUrl, getTierMeta, getWorkplaceTypeLabel, groupSkillsByCategory, hasAdultContent, isAppCategory, isCompanyRequired, isKnownAppId, isKnownPlatform, isValidRgbColor, isVisibleActivityItem, languageTagSchema, lexiconDateExtractor, limitCombiningMarks, makeGraphFollowRecordSchema, maxGraphemes, meetsContrastAA, normalizeOpenTo, normalizePlatformId, normalizePresentationMode, normalizePresentationRole, normalizeWorkplaceTypes, openToTokenToValue, openToValueToToken, parseIntendedAudiences, parseLocationString, parsePresentationDuration, pdsProviderFromApi, pickPrimaryPosition, presentationCsvRowToRecord, presentationDeliveryCsvRowToRecord, profileToDimensionInputs, relativeLuminance, resolveCardUrl, rgbToString, sanitizeDisplayText, sanitizeHandleInput, selfLabelsSchema, singleDateExtractor, sortByDateDesc, stripHtmlToText, strongRefSchema, summarizePresentationDeliveries, truncateGraphemes, uriSchema };
2588
2648
  //# sourceMappingURL=index.js.map