@singi-labs/sifa-sdk 0.11.6 → 0.11.7

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,10 @@ 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",
971
975
  // Web-only (rendered in pills/cards via sifa-web atproto-apps.ts;
972
976
  // no backend scan collection yet)
973
977
  linkat: "Links",
@@ -1904,6 +1908,13 @@ var APP_URL_PATTERNS = Object.freeze({
1904
1908
  // Kevara (professional network) has no live public web surface yet — its
1905
1909
  // domain doesn't resolve and there's no per-record viewer. Recognized so
1906
1910
  // the speaker-directory card renders with the right pill, but non-clickable.
1911
+ },
1912
+ atcr: {
1913
+ // ATCR repositories live at /r/{handle}/{repository}, where the rkey of an
1914
+ // io.atcr.repo.page record is the repository name. Verified live: GET
1915
+ // /r/{handle}/{rkey} and /u/{handle} both return 200.
1916
+ urlPattern: "https://atcr.io/r/{handle}/{rkey}",
1917
+ profileUrlPattern: "https://atcr.io/u/{handle}"
1907
1918
  }
1908
1919
  });
1909
1920
  var COLLECTION_TO_APP = [
@@ -1949,7 +1960,8 @@ var COLLECTION_TO_APP = [
1949
1960
  ["social.crate.", "crate"],
1950
1961
  ["quest.atmo.", "atmorsvp"],
1951
1962
  ["community.opensocial.", "opensocial"],
1952
- ["is.kevara.", "kevara"]
1963
+ ["is.kevara.", "kevara"],
1964
+ ["io.atcr.", "atcr"]
1953
1965
  ];
1954
1966
 
1955
1967
  // src/cards/resolve-card-url.ts
@@ -2584,7 +2596,7 @@ var ProfileVolunteeringRecordSchema = zod.z.object({
2584
2596
  });
2585
2597
 
2586
2598
  // src/index.ts
2587
- var SIFA_SDK_VERSION = "0.11.6";
2599
+ var SIFA_SDK_VERSION = "0.11.7";
2588
2600
 
2589
2601
  exports.ACTIVITY_TIERS = ACTIVITY_TIERS;
2590
2602
  exports.ACTIVITY_VISIBILITY_RULES = ACTIVITY_VISIBILITY_RULES;