@singi-labs/sifa-sdk 0.18.0 → 0.18.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 CHANGED
@@ -1138,6 +1138,9 @@ var APP_CATEGORY_MAP = {
1138
1138
  // org.impactindexer.review.comment — written reviews of a hypercert claim
1139
1139
  pinksea: "Art",
1140
1140
  // com.shinolabs.pinksea.oekaki — hand-drawn artwork posted to the PinkSea oekaki BBS
1141
+ // Onboard from the tijs.org profile audit.
1142
+ dropanchor: "Places",
1143
+ // app.dropanchor.checkin — location check-ins (place, geo, optional review text)
1141
1144
  // Web-only (rendered in pills/cards via sifa-web atproto-apps.ts;
1142
1145
  // no backend scan collection yet)
1143
1146
  linkat: "Links",
@@ -1268,6 +1271,11 @@ var activity_tiers_default = {
1268
1271
  app: "collectivesocial",
1269
1272
  notes: "Auto-created default Inbox lists are filtered at the consumer layer via isDefault=true predicate."
1270
1273
  },
1274
+ "app.dropanchor.checkin": {
1275
+ tier: "creation",
1276
+ app: "dropanchor",
1277
+ notes: "A location check-in (place, geo, category, optional review text). Authored, so creation. app.dropanchor.like is excluded backend-side."
1278
+ },
1271
1279
  "app.mcp.server": {
1272
1280
  tier: "creation",
1273
1281
  app: "mcp"
@@ -3430,6 +3438,12 @@ var APP_URL_PATTERNS = Object.freeze({
3430
3438
  // are pre-encoded as literals here rather than resolved bespoke.
3431
3439
  urlPattern: "https://chive.pub/eprints/at%3A%2F%2F{did}%2Fpub.chive.eprint.submission%2F{rkey}",
3432
3440
  profileUrlPattern: "https://chive.pub/authors/{did}"
3441
+ },
3442
+ dropanchor: {
3443
+ // Dropanchor (dropanchor.app) renders each check-in at /checkin/{rkey} —
3444
+ // the record's own rkey, no did/handle needed. Documented as the OG-tagged
3445
+ // share URL in the dropanchorapp repos. A self-permalink for this record.
3446
+ urlPattern: "https://dropanchor.app/checkin/{rkey}"
3433
3447
  }
3434
3448
  });
3435
3449
  var COLLECTION_TO_APP = [
@@ -3511,7 +3525,9 @@ var COLLECTION_TO_APP = [
3511
3525
  ["org.hypercerts.", "hypercerts"],
3512
3526
  ["app.certified.", "certified"],
3513
3527
  ["org.impactindexer.", "impactindexer"],
3514
- ["com.shinolabs.pinksea.", "pinksea"]
3528
+ ["com.shinolabs.pinksea.", "pinksea"],
3529
+ // Onboard from tijs.org profile audit.
3530
+ ["app.dropanchor.", "dropanchor"]
3515
3531
  ];
3516
3532
 
3517
3533
  // src/cards/resolve-card-url.ts
@@ -6067,7 +6083,7 @@ function describeSifaRecord(collection, value) {
6067
6083
  }
6068
6084
 
6069
6085
  // src/index.ts
6070
- var SIFA_SDK_VERSION = "0.18.0";
6086
+ var SIFA_SDK_VERSION = "0.18.1";
6071
6087
 
6072
6088
  exports.ACTIVITY_TIERS = ACTIVITY_TIERS;
6073
6089
  exports.ACTIVITY_VERBS = ACTIVITY_VERBS;