@fedify/fedify 1.4.0-dev.596 → 1.4.0-dev.598
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/CHANGES.md +9 -0
- package/esm/deno.js +1 -1
- package/esm/runtime/contexts.js +33 -0
- package/esm/vocab/vocab.js +174 -174
- package/package.json +1 -1
- package/types/runtime/contexts.d.ts.map +1 -1
package/CHANGES.md
CHANGED
@@ -34,6 +34,15 @@ To be released.
|
|
34
34
|
[#195]: https://github.com/dahlia/fedify/issues/195
|
35
35
|
|
36
36
|
|
37
|
+
Version 1.3.3
|
38
|
+
-------------
|
39
|
+
|
40
|
+
Released on December 30, 2024.
|
41
|
+
|
42
|
+
- The `fetchDocumentLoader()` function now preloads the following JSON-LD
|
43
|
+
context: <https://gotosocial.org/ns>.
|
44
|
+
|
45
|
+
|
37
46
|
Version 1.3.2
|
38
47
|
-------------
|
39
48
|
|
package/esm/deno.js
CHANGED
package/esm/runtime/contexts.js
CHANGED
@@ -4154,5 +4154,38 @@ const preloadedContexts = {
|
|
4154
4154
|
"yield": { "@id": "schema:yield" },
|
4155
4155
|
},
|
4156
4156
|
},
|
4157
|
+
"https://gotosocial.org/ns": {
|
4158
|
+
"@context": {
|
4159
|
+
"gts": "https://gotosocial.org/ns#",
|
4160
|
+
"interactionPolicy": {
|
4161
|
+
"@id": "gts:interactionPolicy",
|
4162
|
+
"@type": "@id",
|
4163
|
+
},
|
4164
|
+
"canLike": {
|
4165
|
+
"@id": "gts:canLike",
|
4166
|
+
"@type": "@id",
|
4167
|
+
},
|
4168
|
+
"canReply": {
|
4169
|
+
"@id": "gts:canReply",
|
4170
|
+
"@type": "@id",
|
4171
|
+
},
|
4172
|
+
"canAnnounce": {
|
4173
|
+
"@id": "gts:canAnnounce",
|
4174
|
+
"@type": "@id",
|
4175
|
+
},
|
4176
|
+
"always": {
|
4177
|
+
"@id": "gts:always",
|
4178
|
+
"@type": "@id",
|
4179
|
+
},
|
4180
|
+
"approvalRequired": {
|
4181
|
+
"@id": "gts:approvalRequired",
|
4182
|
+
"@type": "@id",
|
4183
|
+
},
|
4184
|
+
"approvedBy": {
|
4185
|
+
"@id": "gts:approvedBy",
|
4186
|
+
"@type": "@id",
|
4187
|
+
},
|
4188
|
+
},
|
4189
|
+
},
|
4157
4190
|
};
|
4158
4191
|
export default preloadedContexts;
|