@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 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
@@ -50,5 +50,6 @@
50
50
  * @module
51
51
  */
52
52
  export * from "./actor.js";
53
+ export * from "./constants.js";
53
54
  export * from "./lookup.js";
54
55
  export * from "./vocab.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fedify/fedify",
3
- "version": "0.6.0",
3
+ "version": "0.7.0-dev.116+6ef7c7a4",
4
4
  "description": "An ActivityPub server framework",
5
5
  "keywords": [
6
6
  "ActivityPub",
@@ -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"}
@@ -50,6 +50,7 @@
50
50
  * @module
51
51
  */
52
52
  export * from "./actor.js";
53
+ export * from "./constants.js";
53
54
  export * from "./lookup.js";
54
55
  export * from "./vocab.js";
55
56
  //# sourceMappingURL=mod.d.ts.map
@@ -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"}