@fedify/relay 2.1.0-dev.543 → 2.1.0-dev.565
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/litepub.test.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
import { URLPattern } from "urlpattern-polyfill";
|
|
4
4
|
globalThis.addEventListener = () => {};
|
|
5
5
|
|
|
6
|
-
import { exportSpki, getDocumentLoader, isRelayFollowerData } from "./types-
|
|
6
|
+
import { exportSpki, getDocumentLoader, isRelayFollowerData } from "./types-CKP_enPQ.js";
|
|
7
7
|
import { MemoryKvStore, signRequest } from "@fedify/fedify";
|
|
8
8
|
import { createRelay } from "@fedify/relay";
|
|
9
9
|
import { Accept, Announce, Create, Delete, Follow, Move, Note, Person, Undo, Update } from "@fedify/vocab";
|
package/dist/mastodon.test.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
import { URLPattern } from "urlpattern-polyfill";
|
|
4
4
|
globalThis.addEventListener = () => {};
|
|
5
5
|
|
|
6
|
-
import { exportSpki, getDocumentLoader, isRelayFollowerData } from "./types-
|
|
6
|
+
import { exportSpki, getDocumentLoader, isRelayFollowerData } from "./types-CKP_enPQ.js";
|
|
7
7
|
import { MemoryKvStore, signRequest } from "@fedify/fedify";
|
|
8
8
|
import { createRelay } from "@fedify/relay";
|
|
9
9
|
import { Create, Delete, Follow, Move, Note, Person, Undo, Update } from "@fedify/vocab";
|
|
@@ -27643,11 +27643,37 @@ const preloadedContexts = {
|
|
|
27643
27643
|
"@id": "https://w3id.org/fep/5711#likedOf",
|
|
27644
27644
|
"@type": "@id"
|
|
27645
27645
|
}
|
|
27646
|
+
} },
|
|
27647
|
+
"http://joinmastodon.org/ns": { "@context": {
|
|
27648
|
+
"toot": "http://joinmastodon.org/ns#",
|
|
27649
|
+
"Emoji": "toot:Emoji",
|
|
27650
|
+
"featured": {
|
|
27651
|
+
"@id": "toot:featured",
|
|
27652
|
+
"@type": "@id"
|
|
27653
|
+
},
|
|
27654
|
+
"featuredTags": {
|
|
27655
|
+
"@id": "toot:featuredTags",
|
|
27656
|
+
"@type": "@id"
|
|
27657
|
+
},
|
|
27658
|
+
"focalPoint": {
|
|
27659
|
+
"@container": "@list",
|
|
27660
|
+
"@id": "toot:focalPoint"
|
|
27661
|
+
},
|
|
27662
|
+
"blurhash": "toot:blurhash",
|
|
27663
|
+
"discoverable": "toot:discoverable",
|
|
27664
|
+
"indexable": "toot:indexable",
|
|
27665
|
+
"memorial": "toot:memorial",
|
|
27666
|
+
"votersCount": "toot:votersCount",
|
|
27667
|
+
"suspended": "toot:suspended",
|
|
27668
|
+
"attributionDomains": {
|
|
27669
|
+
"@id": "toot:attributionDomains",
|
|
27670
|
+
"@type": "@id"
|
|
27671
|
+
}
|
|
27646
27672
|
} }
|
|
27647
27673
|
};
|
|
27648
27674
|
var contexts_default = preloadedContexts;
|
|
27649
27675
|
var name = "@fedify/vocab-runtime";
|
|
27650
|
-
var version = "2.1.0-dev.
|
|
27676
|
+
var version = "2.1.0-dev.565+b4d238a9";
|
|
27651
27677
|
var license = "MIT";
|
|
27652
27678
|
var exports$1 = { ".": "./src/mod.ts" };
|
|
27653
27679
|
var description = "Runtime library for @fedify/vocab";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fedify/relay",
|
|
3
|
-
"version": "2.1.0-dev.
|
|
3
|
+
"version": "2.1.0-dev.565+b4d238a9",
|
|
4
4
|
"description": "ActivityPub relay support for Fedify",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Fedify",
|
|
@@ -50,14 +50,14 @@
|
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@js-temporal/polyfill": "^0.5.1",
|
|
52
52
|
"@logtape/logtape": "^2.0.0",
|
|
53
|
-
"@fedify/fedify": "^2.1.0-dev.
|
|
54
|
-
"@fedify/vocab": "2.1.0-dev.
|
|
53
|
+
"@fedify/fedify": "^2.1.0-dev.565+b4d238a9",
|
|
54
|
+
"@fedify/vocab": "2.1.0-dev.565+b4d238a9"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"tsdown": "^0.12.9",
|
|
58
58
|
"typescript": "^5.9.3",
|
|
59
59
|
"urlpattern-polyfill": "^10.1.0",
|
|
60
|
-
"@fedify/vocab-runtime": "^2.1.0-dev.
|
|
60
|
+
"@fedify/vocab-runtime": "^2.1.0-dev.565+b4d238a9"
|
|
61
61
|
},
|
|
62
62
|
"scripts": {
|
|
63
63
|
"build:self": "tsdown",
|