@fedify/fedify 0.6.0 → 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 +10 -0
- 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,6 +3,16 @@
|
|
|
3
3
|
Fedify changelog
|
|
4
4
|
================
|
|
5
5
|
|
|
6
|
+
Version 0.7.0
|
|
7
|
+
-------------
|
|
8
|
+
|
|
9
|
+
To be released.
|
|
10
|
+
|
|
11
|
+
- Added `PUBLIC_COLLECTION` constant for [public addressing].
|
|
12
|
+
|
|
13
|
+
[public addressing]: https://www.w3.org/TR/activitypub/#public-addressing
|
|
14
|
+
|
|
15
|
+
|
|
6
16
|
Version 0.6.0
|
|
7
17
|
-------------
|
|
8
18
|
|
|
@@ -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"}
|