@singi-labs/sifa-sdk 0.18.0 → 0.18.2
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 +35 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +35 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1138,6 +1138,12 @@ 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)
|
|
1144
|
+
// Onboard from the angrydutchman.houseofmadness.org profile audit.
|
|
1145
|
+
askeverything: "Q&A",
|
|
1146
|
+
// app.askeverything.feed.answer — authored answers to community questions
|
|
1141
1147
|
// Web-only (rendered in pills/cards via sifa-web atproto-apps.ts;
|
|
1142
1148
|
// no backend scan collection yet)
|
|
1143
1149
|
linkat: "Links",
|
|
@@ -1268,6 +1274,16 @@ var activity_tiers_default = {
|
|
|
1268
1274
|
app: "collectivesocial",
|
|
1269
1275
|
notes: "Auto-created default Inbox lists are filtered at the consumer layer via isDefault=true predicate."
|
|
1270
1276
|
},
|
|
1277
|
+
"app.dropanchor.checkin": {
|
|
1278
|
+
tier: "creation",
|
|
1279
|
+
app: "dropanchor",
|
|
1280
|
+
notes: "A location check-in (place, geo, category, optional review text). Authored, so creation. app.dropanchor.like is excluded backend-side."
|
|
1281
|
+
},
|
|
1282
|
+
"app.askeverything.feed.answer": {
|
|
1283
|
+
tier: "creation",
|
|
1284
|
+
app: "askeverything",
|
|
1285
|
+
notes: "An authored answer to a community question (opinion with body text). app.askeverything.actor.* and graph.follow are excluded backend-side."
|
|
1286
|
+
},
|
|
1271
1287
|
"app.mcp.server": {
|
|
1272
1288
|
tier: "creation",
|
|
1273
1289
|
app: "mcp"
|
|
@@ -3430,6 +3446,19 @@ var APP_URL_PATTERNS = Object.freeze({
|
|
|
3430
3446
|
// are pre-encoded as literals here rather than resolved bespoke.
|
|
3431
3447
|
urlPattern: "https://chive.pub/eprints/at%3A%2F%2F{did}%2Fpub.chive.eprint.submission%2F{rkey}",
|
|
3432
3448
|
profileUrlPattern: "https://chive.pub/authors/{did}"
|
|
3449
|
+
},
|
|
3450
|
+
dropanchor: {
|
|
3451
|
+
// Dropanchor (dropanchor.app) renders each check-in at /checkin/{rkey} —
|
|
3452
|
+
// the record's own rkey, no did/handle needed. Documented as the OG-tagged
|
|
3453
|
+
// share URL in the dropanchorapp repos. A self-permalink for this record.
|
|
3454
|
+
urlPattern: "https://dropanchor.app/checkin/{rkey}"
|
|
3455
|
+
},
|
|
3456
|
+
askeverything: {
|
|
3457
|
+
// Ask Everything (askeverything.app) keys its public answer route
|
|
3458
|
+
// (/answer/{id}) on an internal DB id, not the atproto rkey, so there's no
|
|
3459
|
+
// per-record permalink we can build from {did, rkey}. Its profile route
|
|
3460
|
+
// /profile/{handle} does resolve by atproto handle, so fall back to that.
|
|
3461
|
+
profileUrlPattern: "https://askeverything.app/profile/{handle}"
|
|
3433
3462
|
}
|
|
3434
3463
|
});
|
|
3435
3464
|
var COLLECTION_TO_APP = [
|
|
@@ -3511,7 +3540,11 @@ var COLLECTION_TO_APP = [
|
|
|
3511
3540
|
["org.hypercerts.", "hypercerts"],
|
|
3512
3541
|
["app.certified.", "certified"],
|
|
3513
3542
|
["org.impactindexer.", "impactindexer"],
|
|
3514
|
-
["com.shinolabs.pinksea.", "pinksea"]
|
|
3543
|
+
["com.shinolabs.pinksea.", "pinksea"],
|
|
3544
|
+
// Onboard from tijs.org profile audit.
|
|
3545
|
+
["app.dropanchor.", "dropanchor"],
|
|
3546
|
+
// Onboard from angrydutchman.houseofmadness.org profile audit.
|
|
3547
|
+
["app.askeverything.", "askeverything"]
|
|
3515
3548
|
];
|
|
3516
3549
|
|
|
3517
3550
|
// src/cards/resolve-card-url.ts
|
|
@@ -6067,7 +6100,7 @@ function describeSifaRecord(collection, value) {
|
|
|
6067
6100
|
}
|
|
6068
6101
|
|
|
6069
6102
|
// src/index.ts
|
|
6070
|
-
var SIFA_SDK_VERSION = "0.18.
|
|
6103
|
+
var SIFA_SDK_VERSION = "0.18.2";
|
|
6071
6104
|
|
|
6072
6105
|
exports.ACTIVITY_TIERS = ACTIVITY_TIERS;
|
|
6073
6106
|
exports.ACTIVITY_VERBS = ACTIVITY_VERBS;
|