@singi-labs/sifa-sdk 0.18.1 → 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 +19 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +19 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1141,6 +1141,9 @@ var APP_CATEGORY_MAP = {
|
|
|
1141
1141
|
// Onboard from the tijs.org profile audit.
|
|
1142
1142
|
dropanchor: "Places",
|
|
1143
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
|
|
1144
1147
|
// Web-only (rendered in pills/cards via sifa-web atproto-apps.ts;
|
|
1145
1148
|
// no backend scan collection yet)
|
|
1146
1149
|
linkat: "Links",
|
|
@@ -1276,6 +1279,11 @@ var activity_tiers_default = {
|
|
|
1276
1279
|
app: "dropanchor",
|
|
1277
1280
|
notes: "A location check-in (place, geo, category, optional review text). Authored, so creation. app.dropanchor.like is excluded backend-side."
|
|
1278
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
|
+
},
|
|
1279
1287
|
"app.mcp.server": {
|
|
1280
1288
|
tier: "creation",
|
|
1281
1289
|
app: "mcp"
|
|
@@ -3444,6 +3452,13 @@ var APP_URL_PATTERNS = Object.freeze({
|
|
|
3444
3452
|
// the record's own rkey, no did/handle needed. Documented as the OG-tagged
|
|
3445
3453
|
// share URL in the dropanchorapp repos. A self-permalink for this record.
|
|
3446
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}"
|
|
3447
3462
|
}
|
|
3448
3463
|
});
|
|
3449
3464
|
var COLLECTION_TO_APP = [
|
|
@@ -3527,7 +3542,9 @@ var COLLECTION_TO_APP = [
|
|
|
3527
3542
|
["org.impactindexer.", "impactindexer"],
|
|
3528
3543
|
["com.shinolabs.pinksea.", "pinksea"],
|
|
3529
3544
|
// Onboard from tijs.org profile audit.
|
|
3530
|
-
["app.dropanchor.", "dropanchor"]
|
|
3545
|
+
["app.dropanchor.", "dropanchor"],
|
|
3546
|
+
// Onboard from angrydutchman.houseofmadness.org profile audit.
|
|
3547
|
+
["app.askeverything.", "askeverything"]
|
|
3531
3548
|
];
|
|
3532
3549
|
|
|
3533
3550
|
// src/cards/resolve-card-url.ts
|
|
@@ -6083,7 +6100,7 @@ function describeSifaRecord(collection, value) {
|
|
|
6083
6100
|
}
|
|
6084
6101
|
|
|
6085
6102
|
// src/index.ts
|
|
6086
|
-
var SIFA_SDK_VERSION = "0.18.
|
|
6103
|
+
var SIFA_SDK_VERSION = "0.18.2";
|
|
6087
6104
|
|
|
6088
6105
|
exports.ACTIVITY_TIERS = ACTIVITY_TIERS;
|
|
6089
6106
|
exports.ACTIVITY_VERBS = ACTIVITY_VERBS;
|