@fedify/fedify 0.6.0-dev.113 → 0.7.0-dev.116
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 +11 -1
- package/README.md +1 -1
- package/esm/vocab/constants.js +9 -0
- package/esm/vocab/mod.js +1 -0
- package/package.json +1 -1
- package/types/vocab/constants.d.ts +11 -0
- package/types/vocab/constants.d.ts.map +1 -0
- package/types/vocab/mod.d.ts +1 -0
- package/types/vocab/mod.d.ts.map +1 -1
package/CHANGES.md
CHANGED
|
@@ -3,11 +3,21 @@
|
|
|
3
3
|
Fedify changelog
|
|
4
4
|
================
|
|
5
5
|
|
|
6
|
-
Version 0.
|
|
6
|
+
Version 0.7.0
|
|
7
7
|
-------------
|
|
8
8
|
|
|
9
9
|
To be released.
|
|
10
10
|
|
|
11
|
+
- Added `PUBLIC_COLLECTION` constant for [public addressing].
|
|
12
|
+
|
|
13
|
+
[public addressing]: https://www.w3.org/TR/activitypub/#public-addressing
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
Version 0.6.0
|
|
17
|
+
-------------
|
|
18
|
+
|
|
19
|
+
Released on April 9, 2024.
|
|
20
|
+
|
|
11
21
|
- `DocumentLoader` is now propagated to the loaded remote objects from
|
|
12
22
|
Activity Vocabulary objects. [[#27]]
|
|
13
23
|
|
package/README.md
CHANGED
|
@@ -51,7 +51,7 @@ join our [Matrix chat space][Matrix] or [GitHub Discussions].
|
|
|
51
51
|
[Mastodon], [Lemmy], [Pixelfed], [PeerTube], and so on.
|
|
52
52
|
|
|
53
53
|
[JSR]: https://jsr.io/@fedify/fedify
|
|
54
|
-
[JSR badge]: https://jsr.io/badges/@fedify/fedify?
|
|
54
|
+
[JSR badge]: https://jsr.io/badges/@fedify/fedify?v=0.6.0
|
|
55
55
|
[npm]: https://www.npmjs.com/package/@fedify/fedify
|
|
56
56
|
[npm badge]: https://img.shields.io/npm/v/@fedify/fedify?logo=npm
|
|
57
57
|
[GitHub Actions]: https://github.com/dahlia/fedify/actions/workflows/build.yaml
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The special public collection for [public addressing]. *Do not mutate this
|
|
3
|
+
* object.*
|
|
4
|
+
*
|
|
5
|
+
* [public addressing]: https://www.w3.org/TR/activitypub/#public-addressing
|
|
6
|
+
*
|
|
7
|
+
* @since 0.7.0
|
|
8
|
+
*/
|
|
9
|
+
export const PUBLIC_COLLECTION = new URL("https://www.w3.org/ns/activitystreams#Public");
|
package/esm/vocab/mod.js
CHANGED
package/package.json
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
/**
|
|
3
|
+
* The special public collection for [public addressing]. *Do not mutate this
|
|
4
|
+
* object.*
|
|
5
|
+
*
|
|
6
|
+
* [public addressing]: https://www.w3.org/TR/activitypub/#public-addressing
|
|
7
|
+
*
|
|
8
|
+
* @since 0.7.0
|
|
9
|
+
*/
|
|
10
|
+
export declare const PUBLIC_COLLECTION: URL;
|
|
11
|
+
//# sourceMappingURL=constants.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/vocab/constants.ts"],"names":[],"mappings":";AAAA;;;;;;;GAOG;AACH,eAAO,MAAM,iBAAiB,EAAE,GAE/B,CAAC"}
|
package/types/vocab/mod.d.ts
CHANGED
package/types/vocab/mod.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mod.d.ts","sourceRoot":"","sources":["../../src/vocab/mod.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkDG;AACH,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC"}
|
|
1
|
+
{"version":3,"file":"mod.d.ts","sourceRoot":"","sources":["../../src/vocab/mod.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkDG;AACH,cAAc,YAAY,CAAC;AAC3B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC"}
|