@singi-labs/sifa-sdk 0.12.72 → 0.12.73
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 +18 -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 +18 -2
- package/dist/index.js.map +1 -1
- package/dist/query/hooks/index.cjs +201 -102
- package/dist/query/hooks/index.cjs.map +1 -1
- package/dist/query/hooks/index.js +201 -102
- package/dist/query/hooks/index.js.map +1 -1
- package/dist/query/index.cjs +209 -106
- package/dist/query/index.cjs.map +1 -1
- package/dist/query/index.js +209 -106
- package/dist/query/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1106,6 +1106,9 @@ var APP_CATEGORY_MAP = {
|
|
|
1106
1106
|
// Onboard from aaronstevenwhite.io profile audit.
|
|
1107
1107
|
chive: "Research",
|
|
1108
1108
|
// pub.chive.eprint.submission — preprints on chive.pub
|
|
1109
|
+
// Onboard from helene-cook.eu profile audit.
|
|
1110
|
+
zeens: "Photos",
|
|
1111
|
+
// app.photosky.collection — curated photo collections on zeens.app
|
|
1109
1112
|
// Web-only (rendered in pills/cards via sifa-web atproto-apps.ts;
|
|
1110
1113
|
// no backend scan collection yet)
|
|
1111
1114
|
linkat: "Links",
|
|
@@ -1151,6 +1154,11 @@ var activity_tiers_default = {
|
|
|
1151
1154
|
tier: "creation",
|
|
1152
1155
|
app: "atmobb"
|
|
1153
1156
|
},
|
|
1157
|
+
"app.photosky.collection": {
|
|
1158
|
+
tier: "creation",
|
|
1159
|
+
app: "zeens",
|
|
1160
|
+
notes: "A curated photo collection on Zeens (still the app.photosky namespace)."
|
|
1161
|
+
},
|
|
1154
1162
|
"app.beaconbits.beacon": {
|
|
1155
1163
|
tier: "creation",
|
|
1156
1164
|
app: "beaconbits"
|
|
@@ -3189,6 +3197,12 @@ var APP_URL_PATTERNS = Object.freeze({
|
|
|
3189
3197
|
// outbound link points at the author's Aether OS space (mirrors aetheros).
|
|
3190
3198
|
profileUrlPattern: "https://aetheros.computer/{handle}"
|
|
3191
3199
|
},
|
|
3200
|
+
zeens: {
|
|
3201
|
+
// Zeens (zeens.app) still uses its former app.photosky.* namespace. The
|
|
3202
|
+
// app redirects /collection/{handle}/{rkey} to the canonical path below.
|
|
3203
|
+
urlPattern: "https://zeens.app/profile/{handle}/collections/{rkey}",
|
|
3204
|
+
profileUrlPattern: "https://zeens.app/profile/{handle}"
|
|
3205
|
+
},
|
|
3192
3206
|
chive: {
|
|
3193
3207
|
// Chive's eprint route is a catch-all that decodes a single URI-encoded
|
|
3194
3208
|
// at-uri segment: /eprints/<encodeURIComponent(at://did/nsid/rkey)>.
|
|
@@ -3269,7 +3283,9 @@ var COLLECTION_TO_APP = [
|
|
|
3269
3283
|
// Onboard from trezy.codes profile audit.
|
|
3270
3284
|
["app.atmobb.", "atmobb"],
|
|
3271
3285
|
// Onboard from aaronstevenwhite.io profile audit.
|
|
3272
|
-
["pub.chive.", "chive"]
|
|
3286
|
+
["pub.chive.", "chive"],
|
|
3287
|
+
// Onboard from helene-cook.eu profile audit. Zeens kept its old NSID.
|
|
3288
|
+
["app.photosky.", "zeens"]
|
|
3273
3289
|
];
|
|
3274
3290
|
|
|
3275
3291
|
// src/cards/resolve-card-url.ts
|
|
@@ -5779,7 +5795,7 @@ function describeSifaRecord(collection, value) {
|
|
|
5779
5795
|
}
|
|
5780
5796
|
|
|
5781
5797
|
// src/index.ts
|
|
5782
|
-
var SIFA_SDK_VERSION = "0.12.
|
|
5798
|
+
var SIFA_SDK_VERSION = "0.12.73";
|
|
5783
5799
|
|
|
5784
5800
|
exports.ACTIVITY_TIERS = ACTIVITY_TIERS;
|
|
5785
5801
|
exports.ACTIVITY_VERBS = ACTIVITY_VERBS;
|