@singi-labs/sifa-sdk 0.12.72 → 0.12.74
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 +24 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +24 -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
|
@@ -993,6 +993,7 @@ var APP_CATEGORIES = {
|
|
|
993
993
|
Reviews: { phosphorIcon: "Star" },
|
|
994
994
|
Slides: { phosphorIcon: "Presentation" },
|
|
995
995
|
Social: { phosphorIcon: "UsersThree" },
|
|
996
|
+
Translations: { phosphorIcon: "Translate" },
|
|
996
997
|
Verification: { phosphorIcon: "Key" },
|
|
997
998
|
Video: { phosphorIcon: "VideoCamera" }
|
|
998
999
|
};
|
|
@@ -1106,6 +1107,14 @@ var APP_CATEGORY_MAP = {
|
|
|
1106
1107
|
// Onboard from aaronstevenwhite.io profile audit.
|
|
1107
1108
|
chive: "Research",
|
|
1108
1109
|
// pub.chive.eprint.submission — preprints on chive.pub
|
|
1110
|
+
// Onboard from helene-cook.eu profile audit.
|
|
1111
|
+
zeens: "Photos",
|
|
1112
|
+
// app.photosky.collection — curated photo collections on zeens.app
|
|
1113
|
+
// Onboard from scanash.com profile audit.
|
|
1114
|
+
locale: "Translations",
|
|
1115
|
+
// at.locale.{project,translation} — localization projects and authored translation strings on locale.at
|
|
1116
|
+
pckt: "Posts",
|
|
1117
|
+
// blog.pckt.mini.post — microblog posts with no site.standard.document twin
|
|
1109
1118
|
// Web-only (rendered in pills/cards via sifa-web atproto-apps.ts;
|
|
1110
1119
|
// no backend scan collection yet)
|
|
1111
1120
|
linkat: "Links",
|
|
@@ -1151,6 +1160,11 @@ var activity_tiers_default = {
|
|
|
1151
1160
|
tier: "creation",
|
|
1152
1161
|
app: "atmobb"
|
|
1153
1162
|
},
|
|
1163
|
+
"app.photosky.collection": {
|
|
1164
|
+
tier: "creation",
|
|
1165
|
+
app: "zeens",
|
|
1166
|
+
notes: "A curated photo collection on Zeens (still the app.photosky namespace)."
|
|
1167
|
+
},
|
|
1154
1168
|
"app.beaconbits.beacon": {
|
|
1155
1169
|
tier: "creation",
|
|
1156
1170
|
app: "beaconbits"
|
|
@@ -3189,6 +3203,12 @@ var APP_URL_PATTERNS = Object.freeze({
|
|
|
3189
3203
|
// outbound link points at the author's Aether OS space (mirrors aetheros).
|
|
3190
3204
|
profileUrlPattern: "https://aetheros.computer/{handle}"
|
|
3191
3205
|
},
|
|
3206
|
+
zeens: {
|
|
3207
|
+
// Zeens (zeens.app) still uses its former app.photosky.* namespace. The
|
|
3208
|
+
// app redirects /collection/{handle}/{rkey} to the canonical path below.
|
|
3209
|
+
urlPattern: "https://zeens.app/profile/{handle}/collections/{rkey}",
|
|
3210
|
+
profileUrlPattern: "https://zeens.app/profile/{handle}"
|
|
3211
|
+
},
|
|
3192
3212
|
chive: {
|
|
3193
3213
|
// Chive's eprint route is a catch-all that decodes a single URI-encoded
|
|
3194
3214
|
// at-uri segment: /eprints/<encodeURIComponent(at://did/nsid/rkey)>.
|
|
@@ -3269,7 +3289,9 @@ var COLLECTION_TO_APP = [
|
|
|
3269
3289
|
// Onboard from trezy.codes profile audit.
|
|
3270
3290
|
["app.atmobb.", "atmobb"],
|
|
3271
3291
|
// Onboard from aaronstevenwhite.io profile audit.
|
|
3272
|
-
["pub.chive.", "chive"]
|
|
3292
|
+
["pub.chive.", "chive"],
|
|
3293
|
+
// Onboard from helene-cook.eu profile audit. Zeens kept its old NSID.
|
|
3294
|
+
["app.photosky.", "zeens"]
|
|
3273
3295
|
];
|
|
3274
3296
|
|
|
3275
3297
|
// src/cards/resolve-card-url.ts
|
|
@@ -5779,7 +5801,7 @@ function describeSifaRecord(collection, value) {
|
|
|
5779
5801
|
}
|
|
5780
5802
|
|
|
5781
5803
|
// src/index.ts
|
|
5782
|
-
var SIFA_SDK_VERSION = "0.12.
|
|
5804
|
+
var SIFA_SDK_VERSION = "0.12.74";
|
|
5783
5805
|
|
|
5784
5806
|
exports.ACTIVITY_TIERS = ACTIVITY_TIERS;
|
|
5785
5807
|
exports.ACTIVITY_VERBS = ACTIVITY_VERBS;
|